Questions

Q:

All phosphorus atoms have the same

A) Mass number B) Number of neutrons plus the number of electrons
C) Atomic number D) Number of neutrons plus the number of protons
 
Answer & Explanation Answer: C) Atomic number

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

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

The systematic risk of the market is measured by

A) alpha B) beta
C) gamma D) All of the above
 
Answer & Explanation Answer: B) beta

Explanation:

Beta is the measurement of the systematic risk of the market.

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2423
Q:

When backed by buying, power wants become

A) demands B) physical needs
C) exchanges D) social needs
 
Answer & Explanation Answer: A) demands

Explanation:

When backed by buying, power wants become demands. 

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2422
Q:

Teens who drink are at risk of

A) HIV and other STDs B) becoming an alcoholic
C) date rape D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

teens_drinking_are_at_risk_of1539257520.jpg image

Teens drinking are at risk of date rape, becoming an alcoholic, HIV and other STDs.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , 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 2422
Q:

The primary goal of conservation biology is to

A) counter the loss of biodiversity B) estimate the total number of species that exist
C) integrate human culture back into nature D) catalogue species
 
Answer & Explanation Answer: A) counter the loss of biodiversity

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams , CAT
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