Getgyan - getgyan.com - GetGyan Latest Online Resources RSS
General Information:
Latest News:
CCNA Exam Sample 22 Jul 2011 | 07:31 pm
A online test about "CCNA Exam Sample" filed under Computer Networks ...
Multiple Inheritance 2 Jul 2011 | 08:40 pm
Descriptionbest example for multiple inheritance Source Codeinterface t1 extends mt,mj //this is called multiple inheritance { void display(); } interface mt { void show(); } interf ...
Small Code of Binary Search 2 Jul 2011 | 08:39 pm
Descriptionit is the sample code on binary search,first enter the size of array and then enter the elements according to that,then enter the item that u want to search ,output will be "Successful or U...
Tables of Any Given Number 2 Jul 2011 | 08:38 pm
DescriptionThis program shows the table of a given number.Source Code#include<stdio.h> int main() { int x,y=1,z=1; printf("enter the number for table"); scanf("%d",& ...
BST - Binary Search Tree 2 Jul 2011 | 08:38 pm
DescriptionBinary search tree programSource Code//BINARY SEARCH TREE #include "stdio.h" #include "conio.h" #include"malloc.h" #include"stdlib.h" typedef str ...
KBC Game 2 Jul 2011 | 08:37 pm
DescriptionA java quiz application like KAUN BANEGA KAROREPATI....Source Codeimport javax.swing.*; import java.awt.*; import java.awt.event.*; public class testingkbc implements Runnable ...
SQL Test 2 2 Jul 2011 | 08:32 pm
A online test about "SQL Test 2" filed under SQL ...
ASP.NET Test 14 2 Jul 2011 | 08:29 pm
A online test about "ASP.NET Test 14" filed under ASP.NET ...
ASP.NET Test 13 2 Jul 2011 | 08:28 pm
A online test about "ASP.NET Test 13" filed under ASP.NET ...
First In First Out 24 Jun 2011 | 05:50 pm
DescriptionFirst Come First Serve/FIFO/First In First OutSource Code#include<stdio.h> #include<conio.h> void main() { int n,pt[100],wt=0,tt,i; clrscr(); printf("Enter the no of ...