Questions

Q:

Which file format can be added to a powerpoint show?

A) .Gif B) .Wav
C) .Jpg D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

7 2750
Q:

What two things can you never eat for breakfast?

A) Lunch B) Dinner
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

We can never eat lunch and dinner for our breakfast.

Report Error

View Answer Report Error Discuss

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

0 2749
Q:

A cappella refers to

A) Literature B) Music
C) Arts D) War
 
Answer & Explanation Answer: B) Music

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2749
Q:

Analog computer works on the supply of

A) Magnetic strength B) Continuous electrical pulses
C) Discontinuous electrical pulses D) None of the above
 
Answer & Explanation Answer: B) Continuous electrical pulses

Explanation:

Analog_computer_works_on_the_supply_of1557395703.jpg image

An analog computer or analogue computer is a type of computer that uses the continuously changeable aspects of physical phenomena such as electrical, mechanical, or hydraulic quantities to model the problem being solved.

Report Error

View Answer Report Error Discuss

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

2 2748
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 2748
Q:

A sentence has been given in Direct/Indirect Speech. Out of the four given alternatives, select the one which best expresses the same sentencein Indirect/Direct Speech

She says, “I am playing tennis.

A) She says that she was playing tennis B) She was playing tennis.
C) She said she was playing tennis D) She says that she is playing tennis.
 
Answer & Explanation Answer: D) She says that she is playing tennis.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

1 2748
Q:

Select the correct statement about the ureters.

A) The ureter is innervated by parasympathetic nerve endings only. B) Ureters contain sphincters at the entrance to the bladder to prevent the backflow of urine.
C) The epithelium is stratified squamous like the skin, which allows a great deal of stretch. D) The ureters are capable of peristalsis like that of the gastrointestinal tract.
 
Answer & Explanation Answer: D) The ureters are capable of peristalsis like that of the gastrointestinal tract.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 2747
Q:

The reactivity of an atom arises from

A) the existence of unpaired electrons in the valence shell B) the potential energy of the valence shell
C) the average distance of the outermost electron shell from the nucleus D) the sum of the potential energies of all the electron shells
 
Answer & Explanation Answer: A) the existence of unpaired electrons in the valence shell

Explanation:

The reactivity of an atom arises from the existence of unpaired electrons in the valence shell.

Report Error

View Answer Report Error Discuss

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

0 2747