Questions

Q:

What valley is the site of the Earth's highest-ever recorded temperature, 134°F?

Answer

Death Valley

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

2 2430
Q:

The book Mother India was authored by

A) Annie Besant B) Katherine Mayo
C) Mrinalini Sinha D) Lala Lajpath Rai
 
Answer & Explanation Answer: B) Katherine Mayo

Explanation:

The book Mother India (1927) is a polemical book by American historian Katherine Mayo which attacks Indian society, religion and culture.

Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2429
Q:

Who is the Richest investor as per March 2013?

Answer

Warren Edward Buffett(USA), chairman of Berkshire Hathaway, is the world's richest investor, estimated to be worth $53.5 billion as of march 2013.

Report Error

View answer Workspace Report Error Discuss

1 2429
Q:

Analog synthesis refers to a technology based on

A) placing brief digital recordings of live sounds under the control of a synthesizer keyboard. B) interfacing synthesizer equipment.
C) representing data in terms of measurable physical quantities. D) representing physical quantities as numbers.
 
Answer & Explanation Answer: C) representing data in terms of measurable physical quantities.

Explanation:

Analog synthesis uses a mixture of complex sounds that are shaped by filtering. It is based on representing data in terms of measurable physical quantities, in this case sound waves.

Report Error

View Answer Report Error Discuss

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

4 2429
Q:

Which statement is true of all atoms that are anions?

A) The atom has more electrons than protons B) The atom has more protons than electrons
C) The atom has equal number of protons and electrons D) All of the above
 
Answer & Explanation Answer: A) The atom has more electrons than protons

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 2429
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2428
Q:

Which of the following is the India's first underwater robotic drone?

A) EyeROV TUNA B) HandROV TUNA
C) BrainROV TUNA D) HeadROV TUNA
 
Answer & Explanation Answer: A) EyeROV TUNA

Explanation:

EyeROV TUNA, the India's first underwater robotic drone was launched and handed over to Kochi based DRDO lab and it can send realtime videos of ships and other underwater structures to help with their repair and maintenance.

Report Error

View Answer Report Error Discuss

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

1 2428
Q:

Who owns Tradestation?

A) SBI Group B) Monex Group, Inc.
C) CME Group D) None of the above
 
Answer & Explanation Answer: B) Monex Group, Inc.

Explanation:

Tradestation is owned by its parent organization Monex Group, Inc.

Report Error

View Answer Report Error Discuss

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

0 2427