Questions

Q:

The water readily available to plants for absorption by roots is

A) Gravitational water B) Rain water
C) Hygroscopic water D) Capillary water
 
Answer & Explanation Answer: D) Capillary water

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams

20 5991
Q:

Select the synonym of

dependant

A) absolute B) reliant
C) autonomous D) nonpartisan
 
Answer & Explanation Answer: B) reliant

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 5988
Q:

A famous hill station in Uttar pradesh is...........

A) Darjeeling B) Dalhousie
C) Kulu D) Nainital
 
Answer & Explanation Answer: D) Nainital

Explanation:

Darjeeling is in West Bengal and other two are in Himachal Pradesh.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

18 5987
Q:

The Pallava ruler who built the famous kailash temple at Kanchi and the Shore temple at Mahabalipuram was

A) Narsimha varman II B) Paramesvar varman I
C) Mahendra varman I D) Narasimha varman I
 
Answer & Explanation Answer: A) Narsimha varman II

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

4 5979
Q:

The memory unit is one part of

A) Input Device B) Central Processing Unit
C) Control Unit D) Output device
 
Answer & Explanation Answer: B) Central Processing Unit

Explanation:

In a computer, memory is one part of Central processing unit i.e, CPU.

Report Error

View Answer Report Error Discuss

14 5978
Q:

Select the synonym of

 

to defile

 

A) to esteem B) to besmirch
C) to elevate D) to sanctify
 
Answer & Explanation Answer: B) to besmirch

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 5978
Q:

Which of the statements given above are correct?

1. The author of the novel 'Brave New World' is Aldous Huxley.
2. The author of the novel 'An Affair Downstairs' is Sherri Browning.
3. The author of the novel 'Darkness at Noon' is Victor LaValle.

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

1 5975
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

3 5974