Questions

Q:

Which one of the following is the longest National Highway in India?

A) NH2 B) NH5
C) NH7 D) NH8
 
Answer & Explanation Answer: C) NH7

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

92 7466
Q:

Which one of the following cities is called the 'zero mile centre ' of India

A) Kanpur B) Allahabad
C) New Delhi D) Nagpur
 
Answer & Explanation Answer: D) Nagpur

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

16 7465
Q:

The Satpura range situated between two west flowing rivers. They are

A) Narmada and Luni B) Narmada and Tapi
C) Tapi and Mahi D) Mahi and Luni
 
Answer & Explanation Answer: B) Narmada and Tapi

Explanation:

Aravalli seperates the valleys of Luni and Mahi while Vindhyas seperate the valleys of Mahi and Narmada

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

13 7463
Q:

Which number will complete the series?

14, 27, 52, 101, 198, ?

A) 381 B) 395
C) 391 D) 394
 
Answer & Explanation Answer: C) 391

Explanation:
Report Error

View Answer Report Error Discuss

0 7458
Q:

The world famous Ajanta caves are situated in

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

26 7457
Q:

Where is Panch Mahal situated 

A) Fatehpur Sikri B) Gandhinagar
C) Allahabad D) Varanasi
 
Answer & Explanation Answer: A) Fatehpur Sikri

Explanation:

Fatehpur Sikri in Uttar Pradesh.

Report Error

View Answer Report Error Discuss

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

22 7454
Q:

The English East India Company laid the foundation of Fort St.George at Madras during the regin of 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

9 7453
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

4 7448