Questions

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:

Which politician in British India had opposed to a Pakistan that would mean "Muslim Raj here and Hindu Raj elsewhere"?

A) Khan Abdul Ghaffar Khan B) Sikandar Hayat Khan
C) Maulana Abul Kalam Azad D) Rafi Ahmed Kidwai
 
Answer & Explanation Answer: B) Sikandar Hayat Khan

Explanation:

“Pakistan would mean a massacre,” the Premier of Punjab Sir Sikandar Hyat Khan predicted to the distinguished civilian Penderel Moon as early as in October 1938 ( Divide and Quit, page 20). That was well before the Muslim League adopted the Pakistan resolution on March 23, 1940, in Lahore, radically altering Sir Sikandar's draft just 24 hours before it was passed. He repudiated it because it dropped the organic linkbetween the two parts of India, which he had provided. He told the Punjab Legislative Assembly, on March 11, 1941, “We do not ask for freedom that there may be Muslim Raj here and Hindu Raj elsewhere. If that is what Pakistan means I will have nothing to do with it.”

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 2722
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 2721
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
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 2720
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 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