I.
|
What is the output of the following?
#
include <stdio.h>
main(){
int j=4,k;
k=!5&&j;
printf("\nK=%d" , k);
}
|
II.
|
What is the output of the following?
#
include "stdio.h"
main(){
int i = 65;
char j='A';
if (i==j)
printf("C Is WOW");
else
printf("CIs Headache");
}
|
III.
|
What is the output of the following?
int main(){
int ans=27;
ans+=10;
printf(“%d , ”, ans);
cout<<ans<<",";
ans-=7;
printf(“%d , ”, ans);
ans*=2;
printf(“%d , ”, ans);
ans/=3;
printf(“%d , ”, ans);
ans%=3;
return 0;
}
|
IV.
|
What is the output of the following?
main(){
int count=10;
printf(“Count=%d”,count);
printf(“Count=%d”,count--);
printf(“Count=%d”
, count);
printf(“Count=%d”,--count);
printf(“Increment
Operate”);
printf(“Count=%d”,count);
printf(“Count=%d”,count++);
printf(“Count=%d”
, count);
printf(“Count=%d”,++count);
return 0;
}
|
V.
|
What is Identifier?
|
VI.
|
What is the use of gethch() function?
|
VII.
|
What is difference between pretest and posttest loop?
|
VIII.
|
What is sentinel value?
|
IX.
|
Define structured programming language?
|
X.
|
Define Field Width Specifier?
|
XI.
|
What are floating point constants?
|
XII.
|
What do you mean by sequence structure?
|
XIII.
|
What is compound Condition?
|
XIV.
|
Why break statement us used in the switch statement?
|
XV.
|
What is control string in printf() function?
|
XVI.
|
Define syntax error?
|
XVII.
|
What are indexed sequential files?
|
XVIII.
|
What is meant by access security?
|
XIX.
|
What do you mean by Consistency Constraints?
|
XX.
|
List Different Objective of Databse?
|
XXI.
|
What is the use of index in FMS and DBMS?
|
XXII.
|
What is the key?
|
XXIII.
|
List Different properties of relation?
|
XXIV.
|
List Different facilities provided by the good RDBMS?
|
XXV.
|
What is IDE?
|
XXVI.
|
List major database object in database?
|
the results would be like this...
500: 1
100: 0
50: 1
20: 1
10: 0
5: 1
1: 0