Questions

Q:

Which compound contains ionic bonds?

A) CaO B) CO2
C) NO2 D) NO
 
Answer & Explanation Answer: A) CaO

Explanation:

An ionic bond is a chemical bond between two atoms in which one atom seems to donate its electron to another atom.

 

Here in the given compounds, the compound that contains ionic bond is CaO, Calcium oxide.

Report Error

View Answer Report Error Discuss

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

0 2726
Q:

What is the first step in Photosynthesis?

A) Formation of ATP B) Joining of 3-carbon atom to form glucose
C) Ionization of water D) Excitement of an electron of chlorophyll photon of light
 
Answer & Explanation Answer: D) Excitement of an electron of chlorophyll photon of light

Explanation:

The first step in Photosynthesis is Excitement of an electron of chlorophyll photon of light.

Report Error

View Answer Report Error Discuss

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

6 2726
Q:

Forces of attraction limit the motion of particles most in solids.

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

Explanation:

We know that, solids have definite shapes and definite volumes, whereas liquids have definite volumes but indefinite shapes and coming to gases it has indefinite volumes and indefinite shapes.


 


Hence, only in solids, the forces of attraction limit the motion of particles.

Report Error

View Answer Workspace Report Error Discuss

Subject: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2725
Q:

Which event occurs during interphase?

A) Centrioles appear B) Spindle fibers begin to form
C) The cell grows D) Centromeres divide
 
Answer & Explanation Answer: C) The cell grows

Explanation:

The cell carries out the metabolic processes and it grows during interphase.

The cell cycle has three phases that must occur before mitosis, or cell division happens. These three phases are collectively known as interphase. They are G1, S, and G2.

Report Error

View Answer Report Error Discuss

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

2 2725
Q:

Cognitive neuroscientists can examine the brain with

A) PET & MRI B) Gama images & electrolysis
C) electrolysis & PET D) MRI & electrolysis
 
Answer & Explanation Answer: A) PET & MRI

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2723
Q:

When was the  Battle of Marathon occurred ?

A) 490 B.C B) 493 B.C
C) 469 B.C D) 429 B.C
 
Answer & Explanation Answer: A) 490 B.C

Explanation:

A battle was fought between Iran under the king Darius and the state of Greece in 490 B.C at Marathon near Athens. This battle is known as the 'Battle of Marathon' in World History.

Report Error

View Answer Report Error Discuss

Filed Under: World History

2 2723
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2722
Q:

In 8085 which is called as High order / Low order Rigister?

Answer

Flag is called as Low order rigister & Accumulator is called as High order Rigister.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2722