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:

Who was the Prime Minister of India during adopting of Article 370 for Jammu & Kashmir?

A) Narendra Modi B) Jawaharlal Nehru
C) Indira Gandhi D) Gulzarilal Nanda
 
Answer & Explanation Answer: B) Jawaharlal Nehru

Explanation:

Article 370 of the Indian constitution used to give special provision to the region of Jammu and Kashmir. It allows the state to have its own constitution, a separate flag and independence over all matters except foreign affairs, defence and communications. It was adopted in 1947 by then Prime Minister Jawaharlal Nehru.

Report Error

View Answer Report Error Discuss

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

18 2430
Q:

Missing letters puzzle

Answer

Answer:  U


Explanation:  Start with the D on the outer left of the diagram, and move clockwise around the outer segments, then start on the N anti-clockwise around the inner segments. Letters advance through the alphabet in steps of 3, then 4, 5, and 6, repeating this sequence.

Report Error

View answer Workspace Report Error Discuss

5 2430
Q:

 Which isolation level does a database without logging default to?

A) committed read B) dirty read
C) mode ANSI D) repeatable read
 
Answer & Explanation Answer: B) dirty read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2430
Q:

Who appointed as the new Chief Election Commissioner of India?

A) Sunil Arora B) Rajat Kumar
C) Sandeep Misra D) None of the above
 
Answer & Explanation Answer: A) Sunil Arora

Explanation:

Sunil Arora, appointed as the new Chief Election Commissioner of India.

Report Error

View Answer Report Error Discuss

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

2 2429
Q:

The bankruptcy of which company initiated the Panic of 1873?

A) Republic Steel Company B) Jay Cooke & Company
C) Standard Oil Company D) Century Building Society
 
Answer & Explanation Answer: B) Jay Cooke & Company

Explanation:

Jay Cooke & Company, a major component of the United States banking establishment, found itself unable to market several million dollars in Northern Pacific Railway bonds in september 1873. Cooke's firm, like many others, had invested heavily in the railroads.

 

Hence, the bankruptcy of Jay Cooke & company initiated the Panic of 1873.

Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2429
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:

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