Questions

Q:

Which was the only Indus site with an artificial brick dockyard?

A) Lothal B) Dholka
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Lothal

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2444
Q:

To the economist, total cost includes

A) neither implicit nor explicit costs. B) implicit, but not explicit, costs.
C) explicit, but not implicit, cost. D) explicit and implicit costs.
 
Answer & Explanation Answer: D) explicit and implicit costs.

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

Who is the head of the RBI panel on MSME revival?

A) Manoj Das B) U K Sinha
C) Simba D) None of the above
 
Answer & Explanation Answer: B) U K Sinha

Explanation:
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 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 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 2443
Q:

Increasing the Alveolar ventilation rate will

A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli B) Decrease the partial pressure of oxygen in the alveoli
C) Increase the partial pressure of carbon dioxide in the alveoli D) Have no effect on either partial pressure or diffusion rate of gases
 
Answer & Explanation Answer: A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli

Explanation:

Increasing the Alveolar ventilation rate will increase the rate of carbon dioxide diffusion from the blood to the alveoli.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

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