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

Who was the exponent of Yog Darshan?

 

A) Patanjali   B) Gautam
C) Jaimini D) Shankaracharya
 
Answer & Explanation Answer: A) Patanjali  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

2 3758
Q:

Who among the following was not a member of the Constituent Assembly

A) Sardar Vallbhbhai Patel B) Acharya J.B. kriplani
C) Jay Prakash Narayana D) K.M.Munshi
 
Answer & Explanation Answer: C) Jay Prakash Narayana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

4 3757
Q:

Which Airport ranked first in Customer Satisfaction Index Survey in India ?

A) Udaipur Airport B) Raipur Airport
C) Amritsar Airport D) Dehradun Airport
 
Answer & Explanation Answer: B) Raipur Airport

Explanation:

Raipur’s Swami Vivekananda Airport was ranked first in Customer Satisfaction Index (CSI) Survey among 49 airports in the country. It has achieved 4.84 score on a five point scale index. It was followed by Udaipur (2nd), Amritsar (3rd) and Dehradun (4th) airports which have scored 4.75, 4.74 and 4.73 respectively. This is third consecutive time in the past two years, Raipur airport has received this recognition.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

11 3757
Q:

What is NVT?

Answer

It is a set of rules defining a very simple virtual terminal interaction. The NVT is used in the start of a Telnet session.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 3757
Q:

Which of the following is the mixture

A) distilled water B) gasoline
C) liquified petroleum gas D) both (b) & (c)
 
Answer & Explanation Answer: D) both (b) & (c)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

3 3756
Q:

The office of  the UN general Assembly is in

A) Vienna B) Paris
C) Newyork D) Zurich
 
Answer & Explanation Answer: C) Newyork

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

4 3754
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 3753