Questions

Q:

What is amodem connected to?

A) processor B) mother board
C) printer D) phone line
 
Answer & Explanation Answer: D) phone line

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams
Job Role: Bank Clerk

14 4444
Q:

Which of the following is not a fossil fuel?

A) Natural Gas B) Uranium
C) Coal D) Petroleum
 
Answer & Explanation Answer: B) Uranium

Explanation:

Uranium is not a fossil fuel whereas coal, petroleum and natural gas are all natural resources.

Fossil fuels are hydrocarbons, primarily coal, fuel oil or natural gas, formed from the remains of dead plants and animals. In common dialogue, the term fossil fuel also includes hydrocarbon-containing natural resources that are not derived from animal or plant sources

Report Error

View Answer Report Error Discuss

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

6 4444
Q:

Indus Valley Civilization is called the protohistoric civilization because its people knew 

A) art B) writing
C) copper D) pottery
 
Answer & Explanation Answer: B) writing

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

1 4443
Q:

The normal blood pressure in human beings is

A) 80/120 B) 120/80
C) 80/110 D) 110/90
 
Answer & Explanation Answer: B) 120/80

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

8 4443
Q:

Select the correct statement about the pharynx.

A) The auditory tube drains into the nasopharynx B) The laryngopharynx blends posteriorly into the nasopharynx
C) The palatine tonsils are embedded in the lateral walls of the nasopharynx D) The pharyngeal tonsil is located in the laryngopharynx
 
Answer & Explanation Answer: A) The auditory tube drains into the nasopharynx

Explanation:
Report Error

View Answer Report Error Discuss

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

3 4443
Q:

Milk is a 

A) mixture B) element
C) metal D) None of these
 
Answer & Explanation Answer: A) mixture

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

5 4442
Q:

Which of the following countries is a permanent member of the UN Security Council?

A) Switzerland B) People's Republic of china
C) Japan D) Ukraine
 
Answer & Explanation Answer: B) People's Republic of china

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 4442
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 4442