Questions

Q:

Goosebumps are caused by contractions of the

A) Muscles B) Nerves
C) Bones D) All of the above
 
Answer & Explanation Answer: A) Muscles

Explanation:

Goosebumps are caused by the contraction of the tiny muscles attached to hair follicles. These muscles are arrectores pilorum muscles.

 

Goosebumps_are_caused_by_contractions_of_the1560862968.png image

Report Error

View Answer Report Error Discuss

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

6 2907
Q:

Which one of the following National Highways is the longest

A) NH-2 B) NH-7
C) NH-8 D) NH-15
 
Answer & Explanation Answer: B) NH-7

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 2906
Q:

In which state have Indian Railway introduced " Palace on Wheels" to promote tourism ?

A) Punjab B) Kerala
C) Rajasthan D) Andhra Pradesh
 
Answer & Explanation Answer: C) Rajasthan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk

10 2906
Q:

The first female to take over the controls of a NASA spaceship is

A) Wilkie Collins B) Eileen Collins
C) Colette D) Kim Clijsters
 
Answer & Explanation Answer: B) Eileen Collins

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

0 2906
Q:

Light travels fastest in

A) Air B) Water
C) Glass D) Diamond
 
Answer & Explanation Answer: A) Air

Explanation:

Light travels fastest in Vacuum. The fastest thing in the whole universe is the speed of light in a vacuum like outer space. It is about 2.99 x 108 m/s. 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

3 2906
Q:

Which state has recorded highest number of tigers in 2018?

A) Karnataka B) Madhya Pradesh
C) Chhattisgarh D) Uttarakhand
 
Answer & Explanation Answer: B) Madhya Pradesh

Explanation:

India being number one in the Tiger population all over the world, Madhya Pradesh state has the highest number of tigers with 526 tigers and Karnataka is second with 524.

Report Error

View Answer Report Error Discuss

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

4 2906
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,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=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2905
Q:

Most highly intelligent mammals are

A) Elephants B) Kangaroos
C) Whales D) Dolphins
 
Answer & Explanation Answer: D) Dolphins

Explanation:

Dolphins are the most highly intelligent mammals.

Report Error

View Answer Report Error Discuss

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

9 2904