Questions

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

When is the ' World AIDS Day ' observed all over the world

A) 1st october B) 12th December
C) 1st December D) 13th November
 
Answer & Explanation Answer: C) 1st December

Explanation:
Report Error

View Answer Report Error Discuss

5 4438
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 4438
Q:

Is water a Pure substance?

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True, Water is a Pure substance and not a mixture.


 


We know that, A mixture is when two or more substances combine physically together. You can find that the mixture retains the properties of the original components.


In water, two hydrogen atoms combine with one oxygen atom chemically, forming a new substance that has properties different from hydrogen alone or oxygen alone.


 


Therefore, water is not a mixture; it is a compound and it is pure.

Report Error

View Answer Workspace Report Error Discuss

Subject: Chemistry
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

3 4436
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 4436
Q:

Correct the mistakes in the following sentences.

1. He are very happy.

2. We gonna get a new dog.

3. It taste sweet.

4. He like cats.

5. Me favourite coler is blue.

Answer

In the above given sentences, there are some english grammatical and spelling mistakes. They are ::


 


1. He are very happy -------> He is very happy


 


2. We gonna get a new dog ------> We are going to get a new dog


 


3. It taste sweet  -------> It tastes sweet


 


4. He like cats -------> He likes cats


 


5. Me favourite coler is blue -------> My favourite color is blue

Report Error

View answer Workspace Report Error Discuss

Subject: English Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

4 4435
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 4434