Breaking News
Thursday, 3 July 2014
Technical Apttitude Questions to BTECH CSE students
What will be output if you will compile and execute the following c code?
void main(){
char c=125;
c=c+10;
printf("%d",c);
}
...
ANYBODY WHO IS GOING TO FACE IT INTERVIEWS OR PREPARING FOR TECHNICAL SIDE OF YOUR CSE/IT COURSE DO LIKE THIS PAGE.
LIKE TO GET MORE UPDATES :
Question :
What will be the output of the program?
# include
int main()
{
int i=-3, j=2, k=0, m;
m = ++i || ++j && ++k;
printf("%d, %d, %d, %d\n", i, j, k, m);
return 0;
}
Options -
A. 2, 2, 0, 1
B. 1, 2, 1, 0
C. -2, 2, 0, 0
D. -2, 2, 0, 1
Question :1
Which of the following can not be used as the first letter to form a valid java identifier? (Choose all that apply)
A. $
B. &
C. _
D. Any Alphabet (A-Z or a-z)
E. Any Number
Question :2
Multivalued dependencies should ________ be eliminated.
A. always
B. commonly
C. seldom
D. never
Question -3
Which of the following function is used to find the first occurrence of a given string in another string?
A. strchr()
B. strrchr()
C. strstr()
D. strnset()
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment