Questions

Q:

Who amongst the following is the Secretary General of UNO

A) Koffi Annan B) Shashi Tharoor
C) Gordon Drown D) Hugo Chavez
 
Answer & Explanation Answer: A) Koffi Annan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

2 5960
Q:

Purushmedha i.e. Male sacrifies is referred to in

A) krishna Yajurveda B) Shukla Yajurveda
C) Shatapatha Brahman D) panchvisha Brahman
 
Answer & Explanation Answer: C) Shatapatha Brahman

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 5958
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 5954
Q:

Wireless transmission can be done via

A) Infrared waves B) Radio waves
C) Microwaves D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Wireless transmission can be done via any of the Infrared waves, Radio waves or Microwaves.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

6 5951
Q:

Who is the father of Tissue Culture ?

A) Gautheret B) Haberlandt
C) Bonner D) Laibach
 
Answer & Explanation Answer: B) Haberlandt

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Bank Clerk , Bank PO

14 5950
Q:

" World Press Freedom Day " is observed on ?

A) May 1 B) May 2
C) May 3 D) May 4
 
Answer & Explanation Answer: C) May 3

Explanation:

World Press Freedom Day is observed on 3 May every year.

This year’s theme is “Critical Minds for Critical Times: Media’s role in advancing peaceful, just and inclusive societies”.

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams , CAT

4 5949
Q:

What is the basis of classifying various plant tissues as meristematic tissue and permanent tissue?

 

A) Size B) Dividing capacity
C) Location D) No option is correct
 
Answer & Explanation Answer: B) Dividing capacity

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams

0 5949
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 5948