Questions

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 14519
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 14515
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 14511
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 14487
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 14479
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 14471