Questions

Q:

Which is a correct way to measure wavelength?

A) Nearest peak to peak B) Nearest peak to nearest trough
C) Nearest trough to peak D) None of the above
 
Answer & Explanation Answer: A) Nearest peak to peak

Explanation:

Wavelength of a wave can be measured with the distance between two nearest crest and crest or nearest troughs. It is measured as armstrong units.

Report Error

View Answer Report Error Discuss

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

2 2422
Q:

The first oil well in the world was drilled at 

A) Assam B) Japan
C) Pensylvania D) Former USSR
 
Answer & Explanation Answer: C) Pensylvania

Explanation:

The first oil well was dug in 1859. The oil production has since declined but it retains its name for high grade oil

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2422
Q:

Exercise improves memory and learning.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Exercise can boost your memory and thinking skills by improvising alertness, attention and motivation.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2421
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 2421
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 2420
Q:

Activation of the receptors by stimuli is called

A) Perception B) Habituation
C) Adaptation D) Sensation
 
Answer & Explanation Answer: D) Sensation

Explanation:

Activation of the receptors by stimuli is called Sensation.

Report Error

View Answer Report Error Discuss

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

5 2420
Q:

Which of these did progressives support?

Answer

One of the thing that progressive support would be: Direct election of senators.


 


The progressive wanted this so they could the candidate based on the person and not the party.
Direct election of senators will make it easier for them to elect the person that represent their value for the position.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 2419
Q:

The C shape of the tracheal cartilages is important because

A) divide the nasal cavity B) Allows for expansion or contraction of the trachea
C) provide a surface for the sense of smell D) All of the above
 
Answer & Explanation Answer: B) Allows for expansion or contraction of the trachea

Explanation:

Allows for expansion or contraction of the trachea. Hence, so large masses of food can pass through the esophagus during swallowing.

Report Error

View Answer Report Error Discuss

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

2 2419