Describe a finite state machine that will detect three consecutive coin tosses (of one coin) that results in heads.
2843Find 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 5405Which data structure gives efficient search? A. B-tree B. binary tree C. array D. linked list
21 30992Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
6 12164Give 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 15829Post New Sun Microsystems Interview Questions
If both factory and service are equivalent, then when should I use them?
In wcf which bindings supports the reliable session?
While establishing relationship between attributes how do you decide which attribute qualifies as child and which one as parent?
Is asp.net is a programming language?
Tell me is laravel an open source?
What is supplier in java?
What is db command?
Does an increase in testing always improve the project?
What language is used in GIT?
Explain what are some good uses of low-grade steam at 12 atm and 1920c?
What are the matrix and trend report?
What is the use of arraycollection filter function?
What are the risks in java security? : java security
What is
an array of size N in which every number is between 1 and N, determine if there are any duplicates in it. You are allowed to destroy the array if you like. [ I ended up giving about 4 or 5 different solutions for this, each supposedly better than the others ].