Questions

Q:

What is the most common form of iodine deficiency?

Answer

Goitre

Report Error

View answer Workspace Report Error Discuss

Subject: General Science

18 4223
Q:

Which Software services firm has completed the acquisition of London-based Brilliant Basics  ?

A) IBM B) Google
C) Microsoft D) Infosys
 
Answer & Explanation Answer: D) Infosys

Explanation:

Infosys had acquired the product design and customer experience (CX) company Brilliant Basics in a cash deal worth 7.5 million pounds, including earn-out and employee retention amounts.

Report Error

View Answer Report Error Discuss

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

9 4222
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 4222
Q:

...................was conferred Sahitya Akademi Award for his poetry book Khara Zaran

A) Mr. Chinu Modi B) Robin Sharma
C) Gunvant Shah D) Narendra kohli
 
Answer & Explanation Answer: A) Mr. Chinu Modi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

3 4221
Q:

Whenever people are looking for a job, they frequently see "program manager wanted" and "project manager wanted" when reading the job listings in their local newspaper. Which of the following statements best describes the relationship between projects and programs?

A) There are no differences between the two;they are just different terms for the same thing B) A project is composed of one or more related programs.
C) A program is composed of one or more related projects. D) A project is a temporary endeavor, where as a program is permanent
 
Answer & Explanation Answer: C) A program is composed of one or more related projects.

Explanation:

Answer A is incorrect because there is a definite difference between the two terms. Answer B is incorrect because just the opposite is true. Answer D is incorrect because a program is a group of projects, which are temporary endeavors.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4221
Q:

Which of the following is a Project to develop watersheds in India?

A) DRDO B) CARE
C) AVARD D) NWDPRA
 
Answer & Explanation Answer: C) AVARD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

5 4221
Q:

 Which JDBC driver Type(s) is(are) the JDBC-ODBC bridge?

A) Type 1 B) Type 2
C) Type 3 D) Type 4
 
Answer & Explanation Answer: A) Type 1

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 4220
Q:

The outer membrane that covers the lungs

A) Dura mater B) pleura
C) Pia mater D) Myelin sheath
 
Answer & Explanation Answer: B) pleura

Explanation:

The pleura is the membrane that covers the lungs, according to InnerBody. The pleura consists of two layers, with the parietal pleura forming the membrane's outer layer and the visceral pleura forming the membrane's inner layer.

 

Report Error

View Answer Report Error Discuss

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

5 4219