Questions

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

The term 'degrees of newness' is associated with

A) total years of business experience B) degree of design change
C) average length of time on the job D) average age of employees
 
Answer & Explanation Answer: B) degree of design change

Explanation:

The term 'degrees of newness' is associated with degree of design change. How much the design changes that much newness comes in it.

Report Error

View Answer Report Error Discuss

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

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

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:

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:

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:

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