Questions

Q:

An Oracle System Change Number (SCN):

A) is a value that is incremented whenever a dirty read occurs. B) is incremented whenever a deadlock occurs.
C) is a value that keeps track of explicit locks. D) is a value that is incremented whenever database changes are made.
 
Answer & Explanation Answer: D) is a value that is incremented whenever database changes are made.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 4217
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 4217
Q:

Who is named as 'Captain of the year' in the 10th annual ESPNcricinfo Awards ?

A) Quinton de Kock B) Hayley Williams
C) Ben Stokes D) Virat Kohli
 
Answer & Explanation Answer: D) Virat Kohli

Explanation:

Indian international cricketer Virat Kohli has named as the 'Captain of the Year' at the 10th annual ESPNcricinfo Awards. Kohli led India to nine wins out of 12 Tests in the year 2016.

♦ The ESPNcricinfo awards honour the best batting and bowling performances across the international formats of the game in the preceding calendar year.
♦ This year ESPNcricinfo introduced awards for women’s cricket across all three international formats.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

10 4216
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 4216
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 4213
Q:

Which of the following definitions describes a chemical hazard?

A) Microorganisms, such as bacteria, fungus, mold, or viruses that can cause illness B) These hazards can lead to injuries to the joints or muscles by way of heavy, frequent lifting, repetitive tasks
C) Can be present in dust, fumes, liquids, solids, mists, vapors, or gases of products used at a site or released during a construction job D) The most commonly thought of hazards for construction
 
Answer & Explanation Answer: C) Can be present in dust, fumes, liquids, solids, mists, vapors, or gases of products used at a site or released during a construction job

Explanation:
Report Error

View Answer Report Error Discuss

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

2 4213
Q:

Which feature do Prokaryotic and Eukaryotic cells share

A) Nucleus B) DNA
C) Nuclear membrane D) Membrane bound Organelles
 
Answer & Explanation Answer: B) DNA

Explanation:

Prokaryotic and Eukaryotic cells do share a feature of DNA.

Both prokaryotic and eukaryotic cells have structures in common.

All cells have a plasma membrane, ribosomes, cytoplasm, and DNA.

Prokaryotic cells are primitive cells which have no true nucleus and membrane bound organelles, while Eukaryotic cells are cells that have true nucleus, membrane bound organelles and well defined structures and layouts.

Report Error

View Answer Report Error Discuss

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

5 4212
Q:

Which of the following is the regulator of the credit rating agencies in india?

A) RBI B) SBI
C) SIDBI D) SEBI
 
Answer & Explanation Answer: D) SEBI

Explanation:
Report Error

View Answer Report Error Discuss

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

4 4212