Archive for the ‘Question Patterns’ Category
C/C++ Programming interview questions and answers
C/C++ Programming interview questions and answers
By Satish Shetty
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. For example, a client component asking for net revenue from a business object need not know the [...]
Advanced Test in C: The 0×0A Best Questions for C Programmers
Using this Test In the entire test following convention are used
In all program, assume that the required header file/files has /have been included
Consider the data type
char is 1 byte
int is 2 byte
long int 4 byte
float is 4 byet
double is 8 byte
long double is 10 byte
pointer is 2 byte
1. Consider the following program:
#include
static jmp_buf [...]