Questions

Q:

The primary agent of contact metamorphism is

A) Temperature B) Pressure
C) Weathering D) Flowing water
 
Answer & Explanation Answer: A) Temperature

Explanation:

The primary agent of contact metamorphism is heat or temperature.

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 2394
Q:

Land is considered a resource because it

A) is used to produce things B) requires labor to be useful
C) is always available to use D) costs little or nothing to use
 
Answer & Explanation Answer: A) is used to produce things

Explanation:

Land is considered as an important resource because it is useful in producing many things. For example, in agriculture, land is used for cultivating the crop, in industrial use, it is used for constructing factories and to make products that we use.

Report Error

View Answer Report Error Discuss

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

1 2394
Q:

The brain and spinal cord are two components of the

A) Central nervous system B) Peripheral nervous system
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Central nervous system

Explanation:

The brain and spinal cord are two components of the Central nervous system which are responsible for sensory information.

Report Error

View Answer Report Error Discuss

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

3 2394
Q:

In a spreadsheet program how is data organized?

A) Rows and columns B) Layers and planes
C) Lines and spaces D) All of the above
 
Answer & Explanation Answer: A) Rows and columns

Explanation:
Report Error

View Answer Report Error Discuss

2 2394
Q:

The blind spot of the eye is where the optic nerve leaves the eyeball.

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

Explanation:

Everyone of us have a blind spot which is a small portion within the visual field of every eye where the optic nerve and blood vessels leave the eyeball. Optic nerve is connected to brain ehich carries images of what we see.


the_blind_spot_of_the_eye_is_where1536397433.jpg image

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration

0 2394
Q:

I jump when i walk and sit when i stand, who am I?

Answer

Kangaroo.

Report Error

View answer Workspace Report Error Discuss

3 2394
Q:

There are five boxes in a cargo hold. The weight of the first box is 200 kg and the weight of the second box is 20% higher than the weight of the third box, whose weight is 25% higher than the first box’s weight. The fourth box at 350 kg is 30% lighter than the fifth box. Find the difference in the average weight of the four heaviest boxes and the four lightest boxes.

A) 51.5 kg B) 75 kg
C) 37.5 kg D) 112.5 kg
 
Answer & Explanation Answer: B) 75 kg

Explanation:
Report Error

View Answer Report Error Discuss

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