Advertise - About US - Contact Us FRESHERSHOME.COM
Freshers Premium Portal For Fresh Graduates and Engineers

Archive for September, 2007

Advanced PHP Questions

Some of the Advanced questions.
Are available here:


Testing Questions

When an application is given for testing, with what initial testing the testing will be started and when are all the different types of testing done following the initial testing?
What is difference between test plan and use case?
In an application if I enter the delete button it should give an error message “Are you sure [...]


Computer Architecture Questions

Computer Architecture
1. Explain what is DMA?
2. What is pipelining?
3. What are super scalar machines and vliw machines?
4. What is cache?


Agile Java Questions

java:
(1)find out three keywords
(a)synchronized
(b)implement
(c)throws


Agile C++ Test Questions

C++:
(1)the difference b/w pure virtual fn.& virtual fn.
(a)pure virtual function. is initialized to zero.
(b)


Carritor C Interview Questions

1. Struct x
         {
          int i;
         char c;
         }
         union y{
         struct x a;                      
         double d;
         };
        printf("%d",sizeof(union y));
a)8
b)5
c)4
[...]


C Interview Paper

C Paper:
1. What is the difference between Char a[ ]=”string” and char *a=”String”
2. What is wrong with the code? The code was for conversion from Celsius to Fahrenheit : degF =5/9*(c+32)
In code this line was wrong as we want 5/9 and that to be multiplied with bracket result. But here 9 will be first multiplied [...]


Networks Interview Question

Networks:
——–
1.which is not used for error correction :
ANS :bit stuffing.


C programming Questions

C programming:
————-
some small C programs are given asked to tell the function/errors etc.
one of the question(last in the paper) is an invalid statement. finish of all these very fast and think about those others. they are simple only.


Sasken C Interview Questions

1) If u have a linked list library, how do u design stack and queue using it; write pseudo code.
2) What are static variables and functions?
3) Write code in C to count the number of 1s in a character (1byte).
4) What is pre-order, post-order, in-order; write code to print post-order.
5) Can u construct a binary [...]


C Interview Questions

C Interview Questions
1: swap(int x,y)
{
int temp;
temp=x;
x=y;
y=temp;
}
main()
{
int x=2;y=3;
swap(x,y);
}
after calling swap ,what are the values x&y?