Questions

Q:

'Pencillin' which is used as an antibiotic is obtained from 

A) Bacteria B) Fungi
C) Algae D) Lichens
 
Answer & Explanation Answer: B) Fungi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

16 3973
Q:

Famous play ' Macbeth ' is written by

A) Leo Tolstoy B) William Shakespeare
C) john Milton D) Charles Dickens
 
Answer & Explanation Answer: B) William Shakespeare

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

6 3972
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 3972
Q:

Now my value becomes ?

value1499404917.jpg image

A) 5 B) 10
C) 15 D) 12
 
Answer & Explanation Answer: B) 10

Explanation:

In the first figure, number of triangles are 5.

In the second, the figure becomes double then the number of triangles also doubles.

i.e, 10. 

Report Error

View Answer Report Error Discuss

Filed Under: Logic Puzzles
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk

15 3972
Q:

Who among the following is set to become the youngest-ever "Messenger of Peace," for 'United Nations' ?

A) Rashi Anand B) Shikha Patra
C) Bedadyuti Jha D) Malala Yousafzai
 
Answer & Explanation Answer: D) Malala Yousafzai

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 3970
Q:

Second largest continent of the world?

A) Asia B) Australia
C) Africa D) Europe
 
Answer & Explanation Answer: C) Africa

Explanation:

Africa is the second largest continent both by popolation and area wise. Asia being first by both popolation and area wise.

 

second_largest_continent_of_the_world1555564422.png image

Report Error

View Answer Report Error Discuss

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

4 3969
Q:

Solids have definite shapes.This is because

A) the forces of cohesion of the molecules within are very much less in them B) the forces of cohesion are very large
C) the forces of adhesion are large D) the forces of adhesion are less
 
Answer & Explanation Answer: B) the forces of cohesion are very large

Explanation:

Cohesion refers to attraction between molecules of the same kind while adhesion refers to attraction between different kinds of molecules

Report Error

View Answer Report Error Discuss

Filed Under: Physics

3 3968
Q:

The only fil-maker to get Bharat Rartna was

A) Raj Kapoor B) Curies
C) Satyjit ray D) S.S.Vasan
 
Answer & Explanation Answer: C) Satyjit ray

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

1 3968