Questions

Q:

Which of the following South Indian Kingdom is not mentioned in the Ashokan inscription?

A) Satvahan B) Satiyaputa
C) Chola D) Pandya
 
Answer & Explanation Answer: A) Satvahan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

22 10987
Q:

The image of an object formed on the retina of the eye is 

A) virtual and upright B) virtual and inverted
C) real and inverted D) Real and upright
 
Answer & Explanation Answer: C) real and inverted

Explanation:

Although  the image is inverted the mental interpretation of the effect on the retina is as though it is erect

Report Error

View Answer Report Error Discuss

Filed Under: Physics

31 10980
Q:

Monica Seles is associated with which of the following games

A) Athletics B) Badminton
C) Basketball D) Tennis
 
Answer & Explanation Answer: D) Tennis

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

37 10973
Q:

Red Soil is commonly found in the States of :

A) Punjab and Rajasthan B) Himachal Pradesh and Haryana
C) Rajasthan and Himachal Pradesh D) Tamil Nadu and Andhra Pradesh
 
Answer & Explanation Answer: D) Tamil Nadu and Andhra Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

26 10967
Q:

The rotational effect of a force on a body about an axis of rotation is described in terms of

A) Centre of gravity B) Centripetal force
C) Centrifugal force D) Moment of force
 
Answer & Explanation Answer: D) Moment of force

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

29 10960
Q:

Programs stored in ROM are called

A) Hardware B) Firmware
C) Freeware D) Software
 
Answer & Explanation Answer: B) Firmware

Explanation:

The programs which are as permanent as hardware and stored in ROM are known as Firmware.

 

Data stored in ROM can only be modified slowly, with difficulty, or not at all, so it is mainly used to store firmware (software that is closely tied to specific hardware, and unlikely to need frequent updates) or application software in plug-in cartridges.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

25 10960
Q:

The Brahmaputra, Irrawady and Mekong rivers originate in Tibet and flow it through narrow and parallel mountain ranges in their upper reaches. Of these riviers, Brahmaputra makes a "U" turn in its course to flow into india. This "U" turn is due to 

A) Uplift of folded Himalayan series B) Syntaxial bending of geologically young Himalayas
C) Geo-tectonic disturbance in the tertiary folded mountain chains D) Both A and B
 
Answer & Explanation Answer: D) Both A and B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

12 10949
Q:

In the following pieces of code, B and D will compile without any error. True or false ?

A: StringBuffer sb1 = "abcd";

B: Boolean b = new Boolean("abcd");

C: byte b = 255;

D: int x = 0x1234;

E: float fl = 1.2;

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The code segments B and D will compile without any error. A is not a valid way to construct a StringBuffer, you need to create a StringBuffer object using "new". B is a valid construction of a Boolean (any string other than "true" or "false" to the Boolean constructor will result in a Boolean with a value of "false"). C will fail to compile because the valid range for a byte is -128 to +127 (i.e., 8 bits, signed). D is correct, 0x1234 is the hexadecimal representation in java. E fails to compile because the compiler interprets 1.2 as a double being assigned to a float (down-casting), which is not valid. You either need an explicit cast, as in "(float)1.2" or "1.2f", to indicate a float.

Report Error

View Answer Workspace Report Error Discuss

15 10938