Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

Sun Microsystems Interview Questions
Questions Answers Views Company eMail

In which way does a Primitive data type is passed ?

5 25417

What happens when a main method is declared as private?

22 74208

Is there any need to import java.lang package?

13 25444

What is multithread synchronizing ?

4 11723

How many ways can a thread be used?

4 12180

SUN PLACEMENT PAPERS --------------- Placement Paper 1

1 8843

What is VTS?

8 15422

What is the difference between a variable and value?

7 45487

SUN MICROSYSTEMS PAPER - JUNE 2006

1 9014

Describe a finite state machine that will detect three consecutive coin tosses (of one coin) that results in heads.

2830

Find the error in the following program struct point {struct point *next; int data; } x; main() {int...data; } x; main() {int i; for(x=p;x!=0;) x=x->next,x++; freelist(x); } freelist(x) {free(x); return }

1 5372

Which data structure gives efficient search? A. B-tree B. binary tree C. array D. linked list

21 30709

Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1

6 12067

Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");

8 15714

What are the different phases of SDLC ?

94 254991

Post New Sun Microsystems Interview Questions




Un-Answered Questions

define sparse cube?

5


Where Can i take a SPI INtools training in Mumbai? In Rolta India Ltd to whom I should approach regarding of SPI INtools Training?

2764


how many tonnes equals to one cubic feet?

1662


Explain what is asp.net mvc?

1115


Is the amazon ec2 saas?

161


Explain the logic testing?

1138


Explain difference between chart field and chart of accounts?

685


Is css a high level language?

635


#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3743


What are the 4 types of characters?

993


How will two or three servlets interact or communicate with each other?

1440


A DP transmitter is used to measure the level of an open tank. The drain line of the tank is connected to a control valve, and is configured as, if the level of the tank is 90% the valve should get open 10%. And if the tank level is 10%, the valve should get open 90%. Draw wiring diagram and explain how to configure DP transmitter and control valve using HART communicator. If the span error at output is 1%, what will be the %opening of the control valve at 60% level of the tank?

1386


Can we include external javascript/css libraries in components ? : salesforce lightning component

540


What is the importance of hashcode() and equals() methods?

1043


Is iphone safer than android?

866