Questions

Q:

Where is the Longest Corridor in India ?

Answer



Rameshwaram Temple Corridor (5000 feet)


 

Report Error

View answer Workspace Report Error Discuss

26 13400
Q:

Masses of stars and galaxies are usually expressed in terms of

A) neutron mass B) earth's mass
C) solar mass D) lunar mass
 
Answer & Explanation Answer: C) solar mass

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

58 13394
Q:

How does an organization use Resources and Capabilities in creating value?

A) They are used to create value in the form of goods and services B) They are used to create value to the IT organization for Service Support
C) They are used to create value to the IT organization for Service Delivery D) They are used to create value in the form of output for production management
 
Answer & Explanation Answer: A) They are used to create value in the form of goods and services

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 13394
Q:

The number indicating the intensity of an earthquake on a Richter scale range between

A) 1 to 7 B) 1 to 9
C) 1 to 8 D) 1 to 12
 
Answer & Explanation Answer: B) 1 to 9

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

10 13393
Q:

Panchayatiraj form of rural government was first adopted by 

A) Rajasthan & Madhya Pradesh B) Rajasthan & West Bengal
C) Rajasthan & Andhra Pradesh D) Rajasthan & Uttar Pradesh
 
Answer & Explanation Answer: C) Rajasthan & Andhra Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

72 13391
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

16 13388
Q:

What are the notations used in Evaluation of Arithmetic Expressions using prefix and postfix forms?

A) Polish B) Reverse Polish
C) Both A and B D) None of the above
 
Answer & Explanation Answer: C) Both A and B

Explanation:

Polish and Reverse Polish are the notations used in Evaluation of Arithmetic Expressions using prefix and postfix forms

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Database Administration

10 13364
Q:

A prescribed set of well-defined instructions for solving mathematical problems is called ________

A) A compiler B) A code
C) A description D) An algorithm
 
Answer & Explanation Answer: D) An algorithm

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

36 13353