Questions

Q:

In the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case noimprovement is needed, select "no improvement".

A neem tree grew as a bonus on the side, raising its head high as if it wants (will peep) into my bedroom

A) peep B) peeped
C) to peep D) no improvement
 
Answer & Explanation Answer: C) to peep

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

1 2422
Q:

Which part of the respiratory system does emphysema damage?

A) Nose B) Lungs
C) Trachea D) Mouth
 
Answer & Explanation Answer: B) Lungs

Explanation:

Emphysema is a condition that involves damage to the walls of the air sacs (alveoli) of the lung i.e, primarily causes shortness of breath due to over-inflation of the alveoli.

 

First, emphysema causes holes to gradually form inside the lungs' air sacs, thereby weakening their internal structure and inhibiting the exchange of oxygen and carbon dioxide.

Report Error

View Answer Report Error Discuss

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

1 2422
Q:

Core of earth is also known as

A) Barysphere B) Centrosphere
C) Besosphere D) Lithosphere
 
Answer & Explanation Answer: A) Barysphere

Explanation:

Core of earth is also known as Barysphere.

Report Error

View Answer Report Error Discuss

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

4 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:

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

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2419
Q:

How would you obtain segment and offset addresses from a far address of a memory location?

Answer

#include "dos.h"


main()


{


    Char far *scr = ( char far *) 0xB8000000;


    Char *seg, *off;


    Seg = (char *) FP_SEG ( scr );


    Off = ( char *) FP_OFF ( scr );


}


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2419