Questions

Q:

Daisy wheel printer is a type of

A) Impact printer B) Laser printer
C) Manual printer D) Matrix printer
 
Answer & Explanation Answer: A) Impact printer

Explanation:

A daisy-wheel printer works on the same principle as a ball-head typewriter. Daisy wheel printer is a type of impact printer invented in 1969.

Daisy_wheel_printer_is_a_type_of1557315359.jpg image

The daisy wheel is a disk made of plastic or metal on which characters stand out in relief along the outer edge. To print a character, the printer rotates the disk until the desired letter is facing the paper.

Report Error

View Answer Report Error Discuss

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

2 2429
Q:

Which of the following pair is matched correctly?

A) Bharatanatyam - Andhra Pradesh B) Kuchipudi - Madhya Pradesh
C) Kathakali - Kerala D) Kathak - Tamil Nadu
 
Answer & Explanation Answer: C) Kathakali - Kerala

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture
Exam Prep: Bank Exams

15 2428
Q:

Anaerobic glycolysis occurs without

A) water B) glucose
C) oxygen D) All of the above
 
Answer & Explanation Answer: C) oxygen

Explanation:

Anaerobic glycolysis is the transformation of glucose to lactate when limited amounts of oxygen (O2) are available. 

 

Hence, Anaerobic glycolysis occurs without oxygen.

Report Error

View Answer Report Error Discuss

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

0 2428
Q:

Where are the taste receptors located?

A) epiglottis B) upper esophagus
C) tip of the tongue D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Five basic tastes are :

salty,

sweet,

bitter,

sour, and

umami.

Where_are_the_taste_receptors_located1551955329.jpg image

The taste receptors are located all over in the mouth around paillae structures.

Report Error

View Answer Report Error Discuss

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

3 2427
Q:

Which is a density independent factor in controlling a population?

A) Food shortage B) Disease
C) Floods D) All of the above
 
Answer & Explanation Answer: C) Floods

Explanation:

Any factor limiting the size of a population whose effect is not dependent on the number of individuals in the population, then such factor is called Density Independent Factor. It is things that the organisms have no control over.

 

Here in the given options, food shortage and disease are factors that are dependent on the number of population but Floods have no dependency.

 

Some examples of density independent factors are :: Earth quake, fires, volcanic eruptions, floods, and  all natural calamities.

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

The pressure of a fluid varies with depth h as P = PQ+pgh, where p is the fluid density. This expression is associated with

A) Pascal’s law B) Newton’s law
C) Bernoulli’s principle D) Archimedes’ principle
 
Answer & Explanation Answer: A) Pascal’s law

Explanation:

Pascal's law is a principle in fluid mechanics that states that a pressure change occurring anywhere in a confined incompressible fluid is transmitted throughout the fluid such that the same change occurs everywhere.

This principle is stated mathematically as: P= P + rgh

 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2427
Q:

Which one of the following climates is found in coastal areas of California in north America, Central Chile in South America and South-west tip of West Australia?

A) Tropical savanna B) Mediterranean
C) Humid continental D) Low-latitude steppe
 
Answer & Explanation Answer: B) Mediterranean

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

3 2427
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 2427