<<= Back Next =>>
You Are On Multi Choice Question Bank SET 180

9001. Where is the headquarters of ECLAC?





9002. We want to test whether a value lies in the range 2 to 4 or 5 to 7. Can we do this using a switch?



9003. The word ‘Hindu’ as reference to the people of Hind (India) was first used by





9004. By default, the data type of a constant without a decimal point is int, whereas the one with a decimal point is a double.



9005. f-block elements are also called





9006. How many times "IndiaBIX" is get printed? #include<stdio.h> int main() { int x; for(x=-1; x<=10; x++) { if(x < 5) continue; else break; printf("IndiaBIX"); } return 0; }





9007. The highest price a buyer is willing to pay for a stock is called ------





9008. How many times the while loop will get executed if a short int is 2 byte wide? #include<stdio.h> int main() { int j=1; while(j <= 255) { printf("%c %d\n", j, j); j++; } return 0; }





9009. Sharada Act deals with





9010. Which of the following is not logical operator?





9011. The first Environmental Movement in India?





9012. In mathematics and computer programming, which is the correct order of mathematical operators ?





9013. The Tennis court oath is related to





9014. Which of the following cannot be checked in a switch-case statement?





9015. .......... was the first Portuguese viceroy in Kerala





9016. The line that separates atmosphere and outer space.





9017. The only open jail in Kerala is in?





9018. The source of the blue gem stone, lapis lazuli, for the people of Harappan culture was





9019. Biggest Pookalam which won guiness world record in 2010 was made at





9020. Sufi sect developed in the religion





9021. The ratio of pure gold in 18 carat gold is





9022. The winner of the first Ezhuthachan Puraskar ?





9023. The process of adding impurity atoms in a semiconductor is called





9024. In which state of India is the largest river island Majuli?





9025. In which of the following periods, the mighty Himalayas were formed?





9026. By default a real number is treated as a





9027. When the days and nights are equal in both the hemispheres of the Earth, it is called





9028. Which of the following is not user defined data type? 1 : struct book { char name[10]; float price; int pages; }; 2 : long int l = 2.35; 3 : enum day {Sun, Mon, Tue, Wed};





9029. Fill up the blanks with the choices given: I met him ——— Monday.





9030. Is the following statement a declaration or definition? extern int i;





9031. The first no confidence motion was moved in the Lok Sabha after independence was in the year





9032. Identify which of the following are declarations 1 : extern int x; 2 : float square ( float x ) { ... } 3 : double pow(double, double);





9033. Which of the following animals has the longest life span?





9034. In the following program where is the variable a getting defined and where it is getting declared? #include<stdio.h> int main() { extern int a; printf("%d\n", a); return 0; } int a=20;





9035. Who was the freedom fighter of East Timor?





9036. When we mention the prototype of a function?





9037. Life Insurance Corporation (LIC) is an example of





9038. What is the output of the program given below ? #include<stdio.h> int main() { enum status { pass, fail, atkt}; enum status stud1, stud2, stud3; stud1 = pass; stud2 = atkt; stud3 = fail; printf("%d, %d, %d\n", stud1, stud2, stud3); return 0; }





9039. Silicon is a





9040. What will be the output of the program in 16 bit platform (Turbo C under DOS)? #include int main() { extern int i; i = 20; printf("%d\n", sizeof(i)); return 0; }





9041. He is a man of great ability. (Change into a complex sentence)





9042. What is the output of the program? #include<stdio.h> int main() { extern int a; printf("%d\n", a); return 0; } int a=20;





9043. Sakas were finally overthrown by





9044. What is the output of the program in Turbo C (in DOS 16-bit OS)? #include<stdio.h> int main() { char s1; char far s2; char huge s3; printf("%d, %d, %d\n", sizeof(s1), sizeof(s2), sizeof(s3)); return 0; }





9045. Who is the first malayali woman won the Arjuna Award?





9046. What is the output of the program #include<stdio.h> int main() { struct emp { char name[20]; int age; float sal; }; struct emp e = {"Tiger"}; printf("%d, %f\n", e.age, e.sal); return 0; }





9047. Bank rate is the rate of interest





9048. What will be the output of the program? #include<stdio.h> int X=40; int main() { int X=20; printf("%d\n", X); return 0; }





9049. What is the output of the program #include<stdio.h> int main() { int x = 10, y = 20, z = 5, i; i = x < y < z; printf("%d\n", i); return 0; }





9050. What is the output of the program #include<stdio.h> int main() { extern int fun(float); int a; a = fun(3.14); printf("%d\n", a); return 0; } int fun(int aa) { return (int)++aa; }






<<= Back Next =>>
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution