Questions

Q:

Paper currency first started in India in _____ ?

A) 1542 B) 1601
C) 1861 D) 1880
 
Answer & Explanation Answer: C) 1861

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

49 14298
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 14294
Q:

How many letters of the word FAINTS, will their order in the word and that when the letters are arranged in the alphabetical order, remain the same?

A) Two B) One
C) Three D) Nil
 
Answer & Explanation Answer: A) Two

Explanation:

When the letters are arranged in the alphabetical order, two remains the same.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles

62 14287
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 14270
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 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 14257
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:

why 8085 processor, is called an 8 bit processor?

Answer

Because 8085 processor is 8 bit ALU (arithmetic logic review). Similarly 8086 processor has 16 bit ALU.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

19 14235