Category: C++ and C

C++ Technical Interview Questions

C Online Test

Take a simple C Online Test Check your basic c skills, by taking a sample test here with us to know how good you stand on a given C programming language test.

Agile C++ Test Questions

Agile C++ Test Questions

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

Caritor C Interview Questions

Caritor C Interview Questions

Carritor C Interview Questions For Job Seekers to Prepare for the Interview 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 d)1 ans:8

C Interview Paper

C Interview Paper

C Interview Questions 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...

C programming Questions

C programming Questions

C programming For Recent college graduates and professionals for job interview.: ————- 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

Sasken C Interview Questions

Sasken C Interview Questions for Job Interview Seekers 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)...

C++ Important Questions

C++ Important Questions

Can we generate a C++ source code from the binary file? What are inline functions? What is “strstream” ? What is encapsulation?? Containing and hiding information about an object, such as internal data structures and code. Encapsulation isolates the internal complexity of an object’s operation from the rest of the application....

Arrays Interview Questions

Arrays Interview Questions

You are given an array with integers between 1 and 1,000,000. One integer is in the array twice. How can you determine which one? Can you think of a way to do it using little extra memory. You are given an array with integers between 1 and 1,000,000. One integer is...