Questions

Q:

Antipsychotic drugs have proved helpful in the treatment of

A) Epilepsy B) Schizophrenia
C) Psoriasis D) Eczema
 
Answer & Explanation Answer: B) Schizophrenia

Explanation:

Antipsychotic drugs have proved helpful in the treatment of schizophrenia and other psychotic disorders, inhibits dopamine, reduces delusions, hallucinations, thought disorganization.

Report Error

View Answer Report Error Discuss

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

3 2442
Q:

The highest cricket ground in world is at

A) London B) India
C) New Zealand D) Australia
 
Answer & Explanation Answer: B) India

Explanation:

The highest cricket ground in world is in India at Himachal Pradesh. Himachal Pradesh Cricket Association Stadium, Dharamshala, is situated at 4780 feet above the sea level and is one of the most beautiful stadium in the world.

the_highest_cricket_ground_in_the_world_is1550034159.jpg image

Report Error

View Answer Report Error Discuss

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

3 2442
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2442
Q:

How would you obtain segment and offset addresses from a far address of a memory location?

Answer

#include "dos.h"


main()


{


    Char far *scr = ( char far *) 0xB8000000;


    Char *seg, *off;


    Seg = (char *) FP_SEG ( scr );


    Off = ( char *) FP_OFF ( scr );


}


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2442
Q:

Which one of the following places did Mahatma Gandhi first start his Satyagraha in India?

A) Bardoli B) Ahmedabad
C) Kheda D) Champaran
 
Answer & Explanation Answer: D) Champaran

Explanation:

Mahatma Gandhi first start his Satyagraha from Champaran in India.

Report Error

View Answer Report Error Discuss

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

3 2441
Q:

Chang Lo is a folk dance of _______.

A) Arunachal Pradesh B) Punjab
C) Assam D) Nagaland
 
Answer & Explanation Answer: D) Nagaland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT

2 2441
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Fever in the season of dengue is sending Calcuttans scurrying to hospitals for admission, triggering a shortage of beds that has forced some private health care institutes to even postpone planned surgeries. Apollo Gleneagles Hospitals on the Bypass had 504 patients in its care as on Thursday of whom 70 had been admitted with fever. Belle Vue Clinic had 180 patients, 32 of them with dengue. Calcutta Medical Research Institute had 350 patients 60 of them with fever.

The number of people admitted for treatment of fever caused by dengue or any undiagnosed illness has been rising every day across hospitals for more than a fortnight.

"There has been heavy pressure on all private hospitals for admission of dengue and cases of unknown fever since the beginning of August. Now it is a surge," said Pradip Tondon, President of the Association of Hospitals of Eastern India.

In July, four to five patients were getting admitted with fever on an average in every hospital. The number has since ballooned with the Calcutta Municipal Corporation apparently in denial about the extent of the dengue outbreak and the Government focused on playing down the threat.

Such has been the rush of patients with fever that some hospitals are calling up people to postpone admissions planned in advance, mostly for surgeries. "We have told many people to come only when we call them to confirm availability of beds," said an official at Belle Vue.


The word 'ballooned' implies

A) playing with balloons B) decreased
C) increased tremendously D) increased slightly
 
Answer & Explanation Answer: C) increased tremendously

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2441
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 2440