Index
SONATA ONLINE EXAM ETEST 1
Your score will be displayed while taking the exam itself. After finishing the ONLINE EXAM press index or => to go to the other etests. ALL THE BEST!
main() { int i=1; switch(i) { case 1: printf("\nRadioactive cats have 18 half-lives"); break; case 1*2+4: printf("\nBottle for rent -inquire within"); break; } }
? No error ? case 1*2+4: ? None of the above ? Compiler Error
main() { int a=10,b; a>= 5 ? b=100 : b=200; printf("\n%d",b); }
? lvalue required in function main(). ? No Error ? Compiler Error ? None of the above
Point out the error in the following program main() { const int x; x=128; printf("%d",x); }
? x should have been initialized where it is declared ? cann't declare const ? Cannot assign values to const ? None Of The Above
One skirt requires 3.75 yards of cloth. How many skirts you can make from 45 yards?
? 14 ? 12 ? 15 ? 10
Find the next number in the series. 1, 0.5, 0.25, 0.125
? .62515 ? .5 ? 0.062515 ? None Of The Above
One dollar is saved in one month. Then how much dollar is saved in one day?
? 0.0333$ ? 0.333$ ? 0.0033$ ? None Of The Above
Y catches 5 times more fishes than X. If total number of fishes caught by X and Y is 48, then number of fishes caught by X?
? 10 ? 9 ? 8 ? 7
Y catches 5 times more fishes than X. If total number of fishes caught by X and Y is 42, then number of fishes caught by X?
? 780 ? 718 ? 800 ? 820
If a train covers 600m in 0.5 seconds, how long it will cover in 10 seconds?
? 3500 m ? 300 m ? 2300 m ? 3000 m
The girl's age is twice that of boy, if the boy is four years old. After four years the age of the girl is
? 14 years ? 12 years ? 19 years ? 20 years
Index