Questions

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 14542
Q:

Which Of The Following Statements Is Most Accurate For The Declaration X = Circle()?

A) x contains a reference to a Circle object B) You can assign an int value to x
C) x contains an object of the Circle type D) x contains an int value
 
Answer & Explanation Answer: A) x contains a reference to a Circle object

Explanation:
Report Error

View Answer Report Error Discuss

10 14540
Q:

Which of the following countries enjoys a federal form of government

A) China B) USA
C) Cuba D) Belgium
 
Answer & Explanation Answer: B) USA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

16 14524
Q:

Who translated Mahabharata into Persian?

A) Jahangir B) Aurangzeb
C) Akbar D) Shahjahan
 
Answer & Explanation Answer: C) Akbar

Explanation:

The Mahabharata was translated into Persian at Akbar’s orders, by Faizi and 'Abd al-Qadir Bada' uni (c. 1540 – 1615) and named Razmnameh.

Report Error

View Answer Report Error Discuss

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

20 14520
Q:

what will be the output of the following code?

class Value
{
    public int i = 15;
}
public class Test
{
    public static void main(String argv[])
    {
        Test t = new Test();
        t.first();
    }
    public void first()
    {
        int i = 5;
        Value v = new Value();
        v.i = 25;
        second(v, i);
        System.out.println(v.i);
    }
    public void second(Value v, int i)
    {
        i = 0;
        v.i = 20;
        Value val = new Value();
        v =  val;
        System.out.println(v.i + " " + i);
    }
}

A) 15 0 2 B) 15 0 0
C) 15 20 0 D) 15 0 20
 
Answer & Explanation Answer: D) 15 0 20

Explanation:
Report Error

View Answer Report Error Discuss

9 14516
Q:

Select the related word/letters/numbers from the given alternatives:

Words : Sentence :: Paragraph: ?

A) TYPING B) Essay
C) Letters D) Phrase
 
Answer & Explanation Answer: B) Essay

Explanation:
Report Error

View Answer Report Error Discuss

0 14515
Q:

The oldest type of energy known to man is _____?

A) Geothermal Energy B) Solar Power
C) Wind Power D) Tidal Power
 
Answer & Explanation Answer: A) Geothermal Energy

Explanation:

Geothermal energy is heat energy generated and stored in the Earth. Geothermal energy has been used for thousands of years in some countries for cooking and heating. It is simply power derived from the Earth's internal heat.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

26 14503
Q:

Microprocessors as switching devices are for which generation computers?

A) Fourth generation B) Third generation
C) Second generation D) First generation
 
Answer & Explanation Answer: A) Fourth generation

Explanation:

Microprocessors are used in the computers of fourth generation computers. Personal microcomputers were possible due to the microprocessors.

 

Microprocessors further revolutionized the development of computers.

 

The first microprocessor called Intel 4004 was developed by American Intel Corporation in 1971.

Report Error

View Answer Report Error Discuss

27 14481