Questions

Q:

How many times Atal Bihari Vajpayee was a Member of Parliament?

A) 8 B) 10
C) 12 D) 14
 
Answer & Explanation Answer: C) 12

Explanation:

Atal Bihari Vajpayee was a Member of Parliament for 12 times i.e, 10 times for lok sabha and 2 times for rajya sabha.

Report Error

View Answer Report Error Discuss

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

2 2444
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 2444
Q:

Which nation plans to build the first city on Mars by 2117 ?

A) India B) United Arab Emirates
C) China D) Russia
 
Answer & Explanation Answer: B) United Arab Emirates

Explanation:

The President and Vice-President of United Arab Emirates Sheik Mohamed bin Zayed Al Nahyan and Shaik Mohammed bin Rashid Al Maktoum announced in Febraury 2017 that they are planning to build the first inhabitable human settlement on Mars by 2117.

Report Error

View Answer Report Error Discuss

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

8 2443
Q:

Arrange the given words in the sequence in which they occur in the dictionary.

1. Ropped
2. Roster
3. Roasted
4. Road
5. Roller

A) 35412 B) 45312
C) 34512 D) 43512
 
Answer & Explanation Answer: D) 43512

Explanation:
Report Error

View Answer Report Error Discuss

0 2443
Q:

The most common economic system in the world is a

A) Mixed B) Command
C) Planned D) Market
 
Answer & Explanation Answer: A) Mixed

Explanation:

Mixed economy is the most common economic system in the world.

Report Error

View Answer Report Error Discuss

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

0 2443
Q:

Select the antonym of
Humdrum

A) tedious B) trite
C) drab D) fascinating
 
Answer & Explanation Answer: D) fascinating

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams

0 2443
Q:

Which is the least populated state in India as per Census 2011?

A) Bihar B) Kerala
C) Sikkim D) Maharashtra
 
Answer & Explanation Answer: C) Sikkim

Explanation:

the least populated state in India as per Census 2011 is Sikkim.

Report Error

View Answer Report Error Discuss

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

0 2442
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 2442