Questions

Q:

Which among the following hormone can be used as a drug to treat cardiac arrest and some other cardiac problems?

A) Epinephrine B) Insulin
C) Thyroxin D) Calcitonin
 
Answer & Explanation Answer: A) Epinephrine

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2356
Q:

Which one of the following functions is not carried out by smooth endoplasmic reticulum?

A) Transport of materials B) Synthesis of lipid
C) Synthesis of protein D) Synthesis of steroid hormone
 
Answer & Explanation Answer: C) Synthesis of protein

Explanation:

Smooth Endoplasmic Reticulumdoes not contain ribosomes on its surface for which it is regarded as smooth. So, proteins cannotbe synthesised by SER provided protein synthesis is the primary task of ribosomes.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

2 2355
Q:

 Which of the following is required for the DB2 optimizer to consider a hash join strategy?

A) Optimization level 1 or above B) Equijion predicates
C) Registry variable DB_ANTIJOIN=YES D) SORTHEAP large enough to contain the tables being joined
 
Answer & Explanation Answer: B) Equijion predicates

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2355
Q:

The preamble to the constitution does not specify providing for

A) economic equity B) domestic tranquility
C) common defense D) justice
 
Answer & Explanation Answer: A) economic equity

Explanation:

The preamble to the constitution does not specify providing for economic equity.

Report Error

View Answer Report Error Discuss

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

6 2355
Q:

Who has become the first ever Indian shuttler to enter a badminton final at the Asian Games?

A) Saina Nehwal B) PV Sindhu
C) Hima Das D) None of the above
 
Answer & Explanation Answer: B) PV Sindhu

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2355
Q:

Write a c program for merge sort.

Answer

#include
#define MAX 50

void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);

int main(){
  
    int merge[MAX],i,n;

    printf("Enter the total number of elements: ");
    scanf("%d",&n);

    printf("Enter the elements which to be sort: ");
    for(i=0;i<n;i++){
         scanf("%d",&merge[i]);
    }

    partition(merge,0,n-1);

    printf("After merge sorting elements are: ");
    for(i=0;i<n;i++){
         printf("%d ",merge[i]);
    }

   return 0;
}

void partition(int arr[],int low,int high){

    int mid;

    if(low<high){
         mid=(low+high)/2;
         partition(arr,low,mid);
         partition(arr,mid+1,high);
         mergeSort(arr,low,mid,high);
    }
}

void mergeSort(int arr[],int low,int mid,int high){

    int i,m,k,l,temp[MAX];

    l=low;
    i=low;
    m=mid+1;

    while((l<=mid)&&(m<=high)){

         if(arr[l]<=arr[m]){
             temp[i]=arr[l];
             l++;
         }
         else{
             temp[i]=arr[m];
             m++;
         }
         i++;
    }

    if(l>mid){
         for(k=m;k<=high;k++){
             temp[i]=arr[k];
             i++;
         }
    }
    else{
         for(k=l;k<=mid;k++){
             temp[i]=arr[k];
             i++;
         }
    }
  
    for(k=low;k<=high;k++){
         arr[k]=temp[k];
    }
}


Sample output:

Enter the total number of elements: 5
Enter the elements which to be sort: 2 5 0 9 1
After merge sorting elements are: 0 1 2 5 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2354
Q:

On the PC side the printer port is a

A) 25 pin female parallel connector B) 25 pin female serial connector
C) 15 pin female parallel connector D) 25 pin male serial connector
 
Answer & Explanation Answer: A) 25 pin female parallel connector

Explanation:

Screenshot_(66)1593757209.jpg image

 

On the PC side the printer port is a 25 pin female parallel connector.

 

 

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

2 2354
Q:

What is the lowest layer of the atmosphere called as

A) Ionosphere B) Thermosphere
C) Troposphere D) Mesosphere
 
Answer & Explanation Answer: C) Troposphere

Explanation:

The troposphere is the lowest layer of the Earth's atmosphere. The air is very well mixed and the temperature decreases with altitude. Air in the troposphere is heated from the ground up. The surface of the Earth absorbs energy and heats up faster than the air does.

Report Error

View Answer Report Error Discuss

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

6 2354