Kkshema Placement Papers to Download in PDF and Word Format

Download kkshema placement papers in ms word and pdf format for written exams. Check kkshema sample interview questions and test papers for your job interview.
Advertisements

Kshema Paper General - Other

KSHEMA TECHNOLOGIES PAPER - 20031. What are the key differences between C & C++. 2. How is the struct functionality different in C and in C++. 3. What is the difference between the following        a. i=i+1;        b. ++i; ANS: ++i is a single instruction while in i=i+1, first i+1 is computed andthen assigned. 4. What is the difference between the two files.file1.c# include.int i; void main(){ } file2.c # include static int i; void main(){ } ANS: While in this case for both the programs. the scope and lifetime ofvariable ,i, is throughout the program. the value of ,i, is not.        For...