Questions

Q:

Which city of Israel has been recognized as its New Capital by the United States of America?

 

A) Jerusalem B) Haifa
C) Bersheba D) Tel Aviv
 
Answer & Explanation Answer: A) Jerusalem

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 1972
Q:

What molecule makes the trunk of a tree sturdy?

A) Disaccharide B) Fructose
C) Cellulose D) Glucose
 
Answer & Explanation Answer: C) Cellulose

Explanation:

Cellulose is closely related to sugar and rated as a carbohydrate, which means that it is a compound of carbon, hydrogen and oxygen. The woody trunk of a tree is no more than dead cell walls.

tree1533617490.jpg image

Trunk of a tree refers to the main wooden axis of a tree that supports the branches and is supported by and directly attached to the roots. The molecule that makes it sturdy is cellulose.

Report Error

View Answer Report Error Discuss

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

5 1972
Q:

Who painted "Galacidalaicideoxyribonucleicacid"?

Answer

Salvador Dali

Report Error

View answer Workspace Report Error Discuss

5 1972
Q:

Where was the first ODI match played in INDIA

A) Ahmedabad B) New Delhi
C) Kolkata D) Mumbai
 
Answer & Explanation Answer: A) Ahmedabad

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

2 1972
Q:

What is CPU Scheduler?

Answer

Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. CPU scheduling decisions may take place when a process: 1.Switches from running to waiting state. 2.Switches from running to ready state. 3.Switches from waiting to ready. 4.Terminates. Scheduling under 1 and 4 is non-preemptive. All other scheduling is preemptive.

Report Error

View answer Workspace Report Error Discuss

2 1972
Q:

The process of conversion of sugar to alcohol is called

A) Moulding B) Infection
C) Fermentation D) Alcohol fixation
 
Answer & Explanation Answer: C) Fermentation

Explanation:

The process of conversion of sugar to alcohol is called Fermentation in which sugar is coverted to alcohol with the help of yeast.

yeasts11551269935.png image

Report Error

View Answer Report Error Discuss

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

3 1972
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 1971
Q:

How many bit combination are there in a byte?

Answer

Byte contains 8 combinations of bits.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 1971