Questions

Q:

Which of the following can be a cause of fratricide?

A) Clearance of Fires Error B) Fatal Navigation Error
C) Failures in the direct fire control plan D) All of the above
 
Answer & Explanation Answer: C) Failures in the direct fire control plan

Explanation:

Fratricide means the accidental killing of one's own forces in war.

 

Failures in the direct fire control plan can lead to be a cause of fratricide.

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

Which memory needs refresh?

A) DRAM B) SRAM
C) ROM D) All of the above
 
Answer & Explanation Answer: A) DRAM

Explanation:

Memory refresh is the process of periodically reading information from an area of computer memory and immediately rewriting the read information to the same area without modification, for the purpose of preserving the information.

DRAM1532669979.png image

Memory refresh is a background maintenance process required during the operation of semiconductor dynamic random-access memory (DRAM), the most widely used type of computer memory.

Report Error

View Answer Report Error Discuss

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

What does destination scan mean?

A) The shipment has arrived at a UPS facility. B) The shipment has departed a UPS facility and is on its way to the next UPS facility.
C) The shipment has arrived at the local UPS facility responsible for final delivery. D) UPS has received the shipment.
 
Answer & Explanation Answer: C) The shipment has arrived at the local UPS facility responsible for final delivery.

Explanation:

Shipment movement information is captured each time a tracking label is scanned in the UPS delivery system. There may be several days between scans if the shipment is going cross-country or moving between countries.

 

Destination Scan: The shipment has arrived at the local UPS facility responsible for final delivery.

Arrival Scan: The shipment has arrived at a UPS facility.

Departure Scan: The shipment has departed a UPS facility and is on its way to the next UPS facility.

Origin Scan: UPS has received the shipment.

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales

0 2722
Q:

Which area best lends itself to the formation of fossils?

which_area_best_lends_itself_to_the_formation_of_fossils1538734185.jpg image

A) near active volcano B) lake beds
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Area near active volcano or lake beds are best areas that lends itself to the formation of fossils.

Report Error

View Answer Report Error Discuss

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

3 2722
Q:

Who is the new president of News Broadcasters Association (NBA) for 2017-18 ?

A) Barun Das B) K. V. L Narayan Rao
C) Ashok Venkatramani D) Rajat Sharma
 
Answer & Explanation Answer: D) Rajat Sharma

Explanation:

India TV chairman and editor-in- chief Rajat Sharma will be the new president of the News Broadcasters Association (NBA) for 2017-18.

Report Error

View Answer Report Error Discuss

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

7 2720
Q:

Who is the first woman lawyer to be appointed as Supreme court judge?

A) Indu Malhotra B) Fathima Beevi
C) R. Banumathi D) Ruma Pal
 
Answer & Explanation Answer: A) Indu Malhotra

Explanation:

Supreme Court collegium has selected senior advocate Indu Malhotra as the first woman lawyer to be directly appointed as a judge of the apex court.

Along with Malhotra, Uttarakhand High Court Chief Justice KM Joseph has also been promoted as a Supreme Court justice.

Malhotra holds the distinction of being only the second woman in Supreme Court’s history to be designated as a senior advocate in 2007.

In all, Malhotra is going to be the seventh woman judge since independence to make it to the Supreme Court.

At present, Justice R Banumathi is the lone woman judge in the apex court.

Report Error

View Answer Report Error Discuss

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

2 2720
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 2720