Questions

Q:

World’s largest aircraft supercarrier USS Gerald R Ford belongs to _____ country.

A) Russia B) India
C) China D) USA
 
Answer & Explanation Answer: D) USA

Explanation:

1. US Navy commissioned world’s largest aircraft carrier, USS Gerald R Ford into the fleet. The commissioning ceremony was held at Naval Station Norfolk, Virginia in presence of US President Donald Trump.

2. USS Gerald R. Ford is the first ship in this new class of nuclear-powered aircraft carriers for the U.S. Navy. The ship is named after the 38th President of the United States Gerald Ford and has been built by Newport News Ship Building Company. The massive 1,106-foot-long carrier is powered by two new generation nuclear reactors.

Report Error

View Answer Report Error Discuss

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

9 4214
Q:

Which of the following is a Project to develop watersheds in India?

A) DRDO B) CARE
C) AVARD D) NWDPRA
 
Answer & Explanation Answer: C) AVARD

Explanation:
Report Error

View Answer Report Error Discuss

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

5 4214
Q:

Chemical name of Gold?

A) Argentinum B) Ferrus
C) Aurum D) Selenium
 
Answer & Explanation Answer: C) Aurum

Explanation:

The Chemical name of Gold is Aurum with symbol Au with atomic number 79 and a group 11 element. In its purest form, it is a bright, slightly reddish yellow, dense, soft, malleable, and ductile metal.

Chemically, gold is a transition metal.

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

"IPCC" stands for

A) Indian Panel on Code Change B) Indian Penal Country Code
C) Intergovernmental Panel on Climate Change D) Indian Policy on Climate Control
 
Answer & Explanation Answer: C) Intergovernmental Panel on Climate Change

Explanation:

IPCC stands for the Intergovernmental Panel on Climate Change. It was established in 1988 by the World Meteorological Organization and the United Nations Environment Programme.

 

 

      • IPCC, with respect to Chartered Accountancy, stands for Integrated Professional Competence Course. This is the second level of the CA course.




 

Report Error

View Answer Report Error Discuss

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

4 4212
Q:

An Oracle System Change Number (SCN):

A) is a value that is incremented whenever a dirty read occurs. B) is incremented whenever a deadlock occurs.
C) is a value that keeps track of explicit locks. D) is a value that is incremented whenever database changes are made.
 
Answer & Explanation Answer: D) is a value that is incremented whenever database changes are made.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 4211
Q:

Which of the following is the regulator of the credit rating agencies in india?

A) RBI B) SBI
C) SIDBI D) SEBI
 
Answer & Explanation Answer: D) SEBI

Explanation:
Report Error

View Answer Report Error Discuss

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

4 4208
Q:

Write a c program to find out sum of diagonal element of a matrix.

Answer

#include<stdio.h>

int main(){

  int a[10][10],i,j,sum=0,m,n;

  printf("\nEnter the row and column of matrix: ");
  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");
  for(i=0;i<m;i++)
      for(j=0;j<n;j++)
           scanf("%d",&a[i][j]);
  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){
      printf("\n");
      for(j=0;j<m;j++){
      printf("%d\t",a[i][j]);
      }
 }
 for(i=0;i<m;i++){
     for(j=0;j<n;j++){
          if(i==j)
              sum=sum+a[i][j];
     }
 }
 printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;
}

Sample output:

Enter the row and column of matrix: 3 3
Enter the elements of matrix:
2
3
5
6
7
9
2
6
7
The matrix is
2       3       5
6       7       9
2       6       7
Sum of the diagonal elements of a matrix is: 16

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4207
Q:

One light year is approximately equal to

A) 10^12 mts B) 10^16 mts
C) 10^11 mts D) 10^13 mts
 
Answer & Explanation Answer: B) 10^16 mts

Explanation:

Light year is the unit of to express astronomical distances, that light can travel in one year. Light moves at a velocity of about 300,000 kilometers (km) each second. So in one year, it can travel about 10 trillion km. More precisely, one light-year is equal to 9,500,000,000,000 kilometers.

 

Approximately, 1 light year = 10^16 mts.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration

4 4206