Questions

Q:

Who was the Roman Emperor when Jesus was born?

A) Tiberius B) Augustus
C) Gaius Octavius D) Julius Caesar
 
Answer & Explanation Answer: B) Augustus

Explanation:

aug1525935838.jpg image

 

Augustus was a Roman statesman and military leader who served as the first Emperor of the Roman Empire, controlling Imperial Rome from 27 BC until his death in AD 14. Jesus was born in 4 BC.

 

Hence, Augustus was the Roman Emperor when Jesus was born.

Report Error

View Answer Report Error Discuss

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

2 2911
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,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=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2911
Q:

Iveco, Part of the Fiat group, holds 15 per cent stake in an Indian automobile company. The  company in the question is 

A) AShok Leyland B) Hindustan Motors
C) Tata Motors D) Eitcher
 
Answer & Explanation Answer: A) AShok Leyland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

7 2911
Q:

which of the following represents a set of properties that guarantee that database transactions are processed reliably in computer science ?

A) Buffer Cache B) ACID
C) Foreign Key D) None
 
Answer & Explanation Answer: B) ACID

Explanation:

ACID means (Atomicity, Consistency, Isolation, Durability) is a set of properties of database transactions intended to guarantee validity even in the event of errors, power failures, etc.

In the context of databases, a sequence of database operations that satisfies the ACID properties and, thus, can be perceived as single logical operation on the data, is called a transaction. For example, a transfer of funds from one bank account to another, even involving multiple changes such as debiting one account and crediting another, is a single transaction.

Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification
Job Role: Analyst , IT Trainer

13 2910
Q:

Which one of the following National Highways is the longest

A) NH-2 B) NH-7
C) NH-8 D) NH-15
 
Answer & Explanation Answer: B) NH-7

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 2910
Q:

Quality of a musical note depends on

A) Fundamental frequency B) Amplitude of the wave
C) Harmonics present D) Velocity of sound in the medium
 
Answer & Explanation Answer: C) Harmonics present

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2910
Q:

Which of the following Indian Universities has topped the list of country's official higher education rankings, recently announced by the HRD Ministry ? 

A) Jawaharlal Nehru University B) Banaras Hindu University
C) IISc-Bengaluru D) Delhi University
 
Answer & Explanation Answer: C) IISc-Bengaluru

Explanation:

The Indian Institute of Sciences (IISc)- Bengaluru has topped the list of best universities of country's official higher education rankings, recently announced by the HRD Ministry.

Report Error

View Answer Report Error Discuss

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

1 2910
Q:

Another name for the activated complex is

A) Transmission state B) Energy barrier
C) Collision group D) Transition state
 
Answer & Explanation Answer: D) Transition state

Explanation:

The minimum amount of energy required for a particular reactants to convert into products and is called as Activation Energy.

 

Another_name_for_the_activated_complex_is1559538681.jpg image

 

This activation complex is also termed as Transition State because according to Transition State Theory at transition state the existing bonds tend to increase in length and become weaken while, the new forming bonds tend to decrease in length and start becoming stronger.

Hence, the activated complex is in transition between reactants and products.

Report Error

View Answer Report Error Discuss

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

3 2909