Questions

Q:

In the following question, four words are given out of which one word is incorrectly spelt. Find the incorrectly spelt word.

A) Literary B) Leakeage
C) Laudable D) Loafer
 
Answer & Explanation Answer: B) Leakeage

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2106
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.
One who loads and uploads ships

A) Stevedore B) Transgressor
C) Lapidist D) Reticent
 
Answer & Explanation Answer: A) Stevedore

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2106
Q:

Who is the Chief Minister of Punjab as of 1st March 2018?

A) Navjot Singh Sidhu B) Captain Amarinder Singh
C) Parkash Singh Badal D) Naveen Mahindra
 
Answer & Explanation Answer: B) Captain Amarinder Singh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: CAT , Bank Exams

0 2106
Q:

On what are the principles of joint operations formed?

Answer

The principles of joint operations are formed around the traditional principles of war.


 


The other three additional principles include restraint, perseverance, and legitimacy which are relevant to how the Armed Forces of the United States use combat power across the range of military operations.


 

Report Error

View answer Workspace Report Error Discuss

Subject: World History Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2106
Q:

Write a c program to check whether a number is strong or not.

Answer

#include<stdio.h>
int main(){
  int num,i,f,r,sum=0,temp;

  printf("Enter a number: ");
  scanf("%d",&num);
 
  temp=num;
  while(num){
      i=1,f=1;
      r=num%10;

      while(i<=r){
         f=f*i;
        i++;
      }
      sum=sum+f;
      num=num/10;
  }
  if(sum==temp)
      printf("%d is a strong number",temp);
  else
      printf("%d is not a strong number",temp);

  return 0;
}

Sample output:
Enter a number: 145
145 is a strong number

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2106
Q:

Point out the error, if any, in the following program.

main()

{

    int i = 4, j = 2;

    switch(i)

    {

     case 1 :

       printf (''\n To err is human, to forgive is against company policy.");

        break;

      case j :

       printf (''\n if you have nothing to do, don't do it here.");

       break;

    }

}

Answer

Constant expression required in the second case, we cannot use j.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2106
Q:

Candidate Key in DBMS?

Answer

A candidate key is a column, or set of columns, in a table that can uniquely identify any database record without referring to any other data. Each table may have one or more candidate keys, but one candidate key is unique, and it is called the primary key.

Report Error

View answer Workspace Report Error Discuss

1 2106
Q:

The National song of India, Vande Mataram was composed in ____ language.

A) Pali B) Urdu
C) Bengali D) Sanskrit
 
Answer & Explanation Answer: D) Sanskrit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams
Job Role: Bank PO

0 2106