Questions

Q:

The list of sixteen Mahajanapadas is available in

A) Mahabharat B) Chhandogya Upanishad
C) Anguttar Nikaya D) Samyukta Nikaya
 
Answer & Explanation Answer: C) Anguttar Nikaya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

26 14268
Q:

What color does blue and yellow make?

A) Green B) Black
C) Red D) White
 
Answer & Explanation Answer: A) Green

Explanation:

Mixing of blue and yellow colors make Green Color.

                                 400px-Color_mixture.svg_1521793884.png image

 

RYB (an abbreviation of red–yellow–blue) is a historical set of colors used in subtractive color mixing and is one commonly used set of primary colors. It is primarily used in art and design education, particularly painting.

RYB predates modern scientific color theory, which has determined that cyan, magenta, and yellow are the best set of three colorants to combine, for the widest range of high-chroma colors.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

2 14257
Q:

The ITIL V3 core is best described as?

A) An Operations Lifecycle B) A Service Lifecycle
C) An IT Management Lifecycle D) An Infrastructure Lifecycle
 
Answer & Explanation Answer: B) A Service Lifecycle

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

5 14256
Q:

Who was the first Indian ruler who had territory outside India ?

A) Kanishka B) Chandra Guptha Maurya
C) Huvishka D) Ashoka
 
Answer & Explanation Answer: A) Kanishka

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

50 14255
Q:

Lothal a site where dockyard of which of the following civilization were found

A) Indus Valley B) Mesopotamian
C) Egyptian D) Persian
 
Answer & Explanation Answer: A) Indus Valley

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

25 14243
Q:

The base year for computation of National Income in India is

A) 1990 - 91 B) 1993 - 94
C) 1999 - 2000 D) 2000 - 01
 
Answer & Explanation Answer: B) 1993 - 94

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

21 14234
Q:

Who set up the world's first floating ATM ?

A) Bank of America B) Barclays Bank
C) Axis Bank D) State Bank of India
 
Answer & Explanation Answer: D) State Bank of India

Explanation:

India's banking behemoth -- the State Bank of India -- has set up the world's first-ever floating ATM on a boat in Kerala. The boat with the ATM on board will berth at jetties in Kerala's huge backwaters through which thousands of people travel daily.

Report Error

View Answer Report Error Discuss

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

36 14216
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 14210