Questions

Q:

Which operation is not performed by computer?

A) Understanding B) Controlling
C) Processing D) Inputting
 
Answer & Explanation Answer: A) Understanding

Explanation:

A computer can perform inputting, processing and cotrolling but it can't perform understanding as it is has no brain. It can't earn from its previous experiances.

Report Error

View Answer Report Error Discuss

21 14595
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 14574
Q:

A removable magnetic disc that holds information ______

A) Floppy disk B) Hard drive
C) Monitor D) Portable
 
Answer & Explanation Answer: A) Floppy disk

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

45 14558
Q:

How many joining conditions are required to join 4 tables in SQL?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: C) 3

Explanation:

To join 'n' tables 'n-1' conditions should be satisfied.

So to join 4 tables 3 conditions should be satisfied.

Report Error

View Answer Report Error Discuss

38 14546
Q:

The world famous 'Khajuraho' sculptures are located in

A) Gujarat B) Madhya Pradesh
C) Orissa D) Maharashtra
 
Answer & Explanation Answer: B) Madhya Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

58 14541
Q:

No current will flow between two charged bodies if they have the same 

A) resistance B) charge
C) potential D) charge/ potential ratio
 
Answer & Explanation Answer: C) potential

Explanation:

An electric charge always flows from a body at higher potential to a body at a lower potential irrespective of the amounts of charges contained in them. In the question , no current flows. So there is no potential difference. 

Report Error

View Answer Report Error Discuss

Filed Under: Physics

30 14541
Q:

Why are CPM, GERT, and PERT not considered sufficient to create a project schedule?

A) All three are tools and techniques of schedule development, not the actual schedule B) As mathemetical analysis tools, they simply provide the dates that are posible, and do not consider resource pool limitations
C) They are sufficient. Each calculates early and late start and finish dates for each activity D) They are Monte Carlo techniques used to provide what-if analysis for adverse external factors on a project
 
Answer & Explanation Answer: B) As mathemetical analysis tools, they simply provide the dates that are posible, and do not consider resource pool limitations

Explanation:

Answer A is tempting because it is true by definition, but Answer B is correct because it properly answers the question, in that these techniques do not take into account resource pool constraints. Answer C is incorrect because it provides possible early and late start and finish dates, but not the actual schedules. Answer D is incorrect because none of the the three are simulation techniques. 

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

20 14524
Q:

The National Atlas and Thematic Mapping Organisation (NATMO) is located at 

A) Kolkata B) Lucknow
C) Dehra Dun D) New Delhi
 
Answer & Explanation Answer: A) Kolkata

Explanation:

It compiles and publishes atlases and maps on various themes of National importance. They are used for planning and research.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

25 14524