Questions

Q:

Which of the following is not a monotheistic religion?

A) Hinduism B) Christianity
C) Islam D) Sikhism
 
Answer & Explanation Answer: A) Hinduism

Explanation:

Monotheism is the belief in a single all-powerful god, as opposed to religions that believe in multiple gods.

Sikhism, Judaism, Christianity, and Islam are widely practiced forms of monotheism.

Report Error

View Answer Report Error Discuss

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

5 1975
Q:

A test to determine processor speed is?

A) a gesture B) flat panel
C) a benchmark D) None of the above
 
Answer & Explanation Answer: C) a benchmark

Explanation:

The total number of instructions a computer executes per second is called as its processors speed. 

 

Maximum the processor's speed minimum the time for execution.

 

A test to determine processor speed is a benchmark.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

4 1974
Q:

Which of the following causes tornadoes?

A) condensation B) dry climates
C) wind shear D) stationary fronts
 
Answer & Explanation Answer: B) dry climates

Explanation:

Conditions suitable for the formation of a tornado develop when varying temperatures and humidity come together and form thunderclouds. This refers to the presence of warm and moist condition in the lower atmosphere and cold and dry conditions in the upper atmosphere. The place where these varying masses of air meet is known as the dry-line. Such conditions, which are suitable for the formation of a tornado, are most often observed just before a low pressure system develops.

 

Once the ideal conditions occur, the warm air tries to rise in the atmosphere, while the cold air blocks it. This makes the air in between rotate horizontally. In the meanwhile, the land is heated by the Sun, and hence, the air near the ground becomes warm and starts rising. Continuous fueling by the heat energy from the Sun ensures that the warm air has an upper hand over cold air. As a result of this, the cold air at the top starts sinking and the warm air below starts rising in a spinning motion. As the amount of warm air increases, the formation gains height and becomes intense. The intensity of these devastating tornadoes is such that they can clear off anything that comes in their path.

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

Which of the following gulf countries has imposed value added tax (VAT) from January 1, 2018?

 

A) Bahrain and Kuwait   B) Oman and Saudi Arabia  
C) Kawait and UAE   D) UAE and Saudi Arabia  
 
Answer & Explanation Answer: D) UAE and Saudi Arabia  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 1974
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 1974
Q:

What is the only chain we can eat ?

Answer

A food chain is the only chain we can eat.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: Bank Exams

3 1974
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 1973
Q:

What is a drawback of MVT?

Answer

It does not have the features like



  1. ability to support multiple processors

  2. virtual storage

  3. source level debugging

Report Error

View answer Workspace Report Error Discuss

0 1973