Questions

Q:

Digitized information can be used by computers.

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

Explanation:

TRUE. The computers and electronic devices use digitized information which is easily understood by them.


 


Digitization is the process of converting analog signals or information of any form into a digital format that can be understood by computer systems or electronic devices. The term is used when converting information, like text, images or voices, and sounds, into binary code.

Report Error

View Answer Workspace Report Error Discuss

6 4265
Q:

The amount of RAM storage is measured in

A) bytes B) mega bytes
C) giga bytes D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

RAM storage capacity is measured in bytes, kilo bytes, mega bytes, giga bytes,...

Report Error

View Answer Report Error Discuss

2 4265
Q:

Name another word for friend?

A) playfellow B) enemy
C) rival D) foe
 
Answer & Explanation Answer: A) playfellow

Explanation:

Friend is a person with whom one has a bond of mutual affection, typically one exclusive of sexual or family relations.

 

Other names for friend are mate, bosom friend, classmate, buddy, ally,...

Report Error

View Answer Report Error Discuss

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

11 4262
Q:

Systems running more than one process concurrently are called ______________

A) Multiprocessing B) Multiprogramming
C) Real time D) Batch processing
 
Answer & Explanation Answer: B) Multiprogramming

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

6 4261
Q:

Which of the following cities is the first mono rail inaugurated?

A) Delhi B) Mumbai
C) Kolkata D) Bangalore
 
Answer & Explanation Answer: B) Mumbai

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4261
Q:

Which one of the following is NOT an example of economic overheads

A) Schools B) Sanitary Facilities
C) Roads and Rrailways D) Coal Mines
 
Answer & Explanation Answer: D) Coal Mines

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

1 4259
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 4258
Q:

What is the political party of the president now?

A) BJP B) INC
C) BSP D) NCP
 
Answer & Explanation Answer: A) BJP

Explanation:

Ram Nath Kovind, the present President of India is from BJP, Bharatiya Janata Party.

The president of the Republic India is the head of state of India. He is also the commander-in-chief of Indian Armed Forces. He is indirectly elected by the people through members of both houses of the parliament of India, legislative assemblies of all the states of India, the legislative assembly of the Union

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

1 4255