Questions

Q:

Galileo was an Italian Astronomer who

A) Discovered 4 satellites of Mars B) Developed the Telescope
C) Discovered that the movement of pendulum produces a regular time measurement D) Both B & C
 
Answer & Explanation Answer: D) Both B & C

Explanation:

Galileo Galilei (1564-1642) was an Italian Astronomer who

1) Discovered 4 satellites of Jupiter

2) Developed Telescope

3) Discovered that the movement of pendulum produces a regular time measurement

 

Galileo_was_an_Italian_Astronomer_who1559023780.png image

 

He is Physicist, Mathematician, inventor, and philosopher Too.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: IT Trainer , Bank PO , Analyst

6 4157
Q:

The amount of RAM storage is measured in

A) bytes B) mega bytes
C) giga bytes D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

RAM storage capacity is measured in bytes, kilo bytes, mega bytes, giga bytes,...

Report Error

View Answer Report Error Discuss

2 4156
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 4156
Q:

Number of moles of CO2 present in 24 grams of carbon is

A) 0.5 B) 1
C) 2 D) 0.25
 
Answer & Explanation Answer: C) 2

Explanation:

1 mole of CO2 contain 12gms of carbon and 44 gms of CO2

therefore  24 gms of carbon is present in 88 gms of CO2 or 2 moles of CO2

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

7 4154
Q:

Which river has no mention in Rigaveda

A) Sindhu B) Saraswati
C) Yamuna D) Periyar
 
Answer & Explanation Answer: D) Periyar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 4153
Q:

Thermal energy is caused by the motion of

A) atoms B) molecules
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Thermal energy is caused by the motion of atoms and molecules in the matter.

Thermal_energy_is_caused_by_the_motion_of1556262535.jpg image

 

  1. Thermal energy is an example of kinetic energy, as it is due to the motion of particles, with motion being the key.
  2. Thermal energy results in an object or a system having a temperature that can be measured.
  3. Thermal energy can be transferred from one object or system to another in the form of heat.
Report Error

View Answer Report Error Discuss

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

3 4149
Q:

National Commission for Backward Classes was set up in 

A) 1991 B) 1992
C) 1993 D) 1994
 
Answer & Explanation Answer: C) 1993

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

6 4149
Q:

World Population Day is observed on ____ ?

A) 9 July B) 11 July
C) 15 July D) 4 July
 
Answer & Explanation Answer: C) 15 July

Explanation:

World Population day is an annual event, observed on July 11 every year, which seeks to raise awareness of global population issues. 

Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

6 4146