Unix Interview Questions
Q: How would you make the following SQL statement run faster? SELECT * FROM TABLEA WHERE COL1=’A’ AND COL2=’B’;
A: ......
Read the rest of this entry »
Interview»
Window Interview Questions
What are kernel objects? - - Several types of kernel objects, such as access token objects, event objects, file objects, ......
Read the rest of this entry »
Interview»
Charsets and Endian-ness
A character set, also known as an “encoding,” is the set of bit patterns used to represent a set of ......
Read the rest of this entry »
Languages»
Creating shared & static library using gnu compiler
The code for the library
calc_mean.c
//#include <stdio.h>##N(mean)
double mean(double a, double b) {
return (a+b) / 2;
}
The header file
Of course, we ......
