Questions

Q:

All the organisms on your campus make up

A) a community B) a group
C) an ecosystem D) None of the above
 
Answer & Explanation Answer: A) a community

Explanation:

All the organisms on your campus make up a community.

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

World Wrestling Championship has recently begun at

A) Hungary B) Poland
C) Belgium D) None of the above
 
Answer & Explanation Answer: A) Hungary

Explanation:

Hungarian capital city Budapest is where the World Wrestling Championship has begun in which Bajrang Punia resembles India.

Report Error

View Answer Report Error Discuss

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

2 2448
Q:

Which country is the 2nd largest importer of weapons in the world, as per 'Trends in International Arms Transfers 2018?

A) North Korea B) India
C) China D) Pakistan
 
Answer & Explanation Answer: B) India

Explanation:

India is the 2nd largest importer of weapons in the world, as per 'Trends in International Arms Transfers 2018.

Report Error

View Answer Report Error Discuss

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

3 2448
Q:

What is Executive in Windows NT?

Answer

In Windows NT, executive refers to the operating system code that runs in kernel mode.

Report Error

View answer Workspace Report Error Discuss

1 2448
Q:

The process of bones increasing in width is known as

A) appositional growth B) concentric growth
C) closing of the epiphyseal plate D) long bones reaching adult length and width
 
Answer & Explanation Answer: A) appositional growth

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2448
Q:

Which of these best describes genetic drift?

A) Random fluctuations in the gene frequencies within a population Eliminate B) The combining of alleles to create more genetic variations within a population
C) The movement of alleles between population D) A planned method to reduce the number of inferior genes in a population
 
Answer & Explanation Answer: A) Random fluctuations in the gene frequencies within a population Eliminate

Explanation:

Random fluctuations in the gene frequencies within a population Eliminate is the one which best describes genetic drift.

Report Error

View Answer Report Error Discuss

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

1 2448
Q:

Stress is a factor that contributes to heart disease risk.

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

Explanation:

True, poorly controlled stress and anger can lead to heart attacks and strokes.

Report Error

View Answer Workspace Report Error Discuss

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

2 2448
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 2447