Questions

Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best expresses the same sentence in Passive/Active voice.

 

The painters are painting my house.

A) Painting of my house is being done by the painters. B) The painters had painted my house.
C) My house has had been painted by the painters. D) My house is being painted by the painters.
 
Answer & Explanation Answer: D) My house is being painted by the painters.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2192
Q:

C program to find whether a number is palindrome or not.

Answer

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

    printf("Enter a number: ");
    scanf("%d",&num);

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

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2192
Q:

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

  for ( i = 0 ; i <= 9; i++)

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2192
Q:

What is relative path and absolute path?

Answer

Absolute path-- Exact path from root directory.

Relative path-- Relative to the current path.

Report Error

View answer Workspace Report Error Discuss

1 2192
Q:

Select the answer figure, in which question figure is hidden?

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2192
Q:

In the following question, out of the four alternatives, select the word opposite in meaning to the word given.
Lugubrious

A) Clumsy B) Lucid
C) Optimistic D) Sinister
 
Answer & Explanation Answer: C) Optimistic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2192
Q:

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

A) Familiar B) Grammer
C) Narrator D) Operator
 
Answer & Explanation Answer: B) Grammer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2192
Q:

The question below consists of a set of labelled sentences. These sentences, when properly sequenced form a coherent paragraph. Select the most logical order of sentences from among the options.


P: Yoga is one of the ancient art forms which was originated in India thousand years ago.
Q: It is the connection of individual Soul to the Divine soul.
R: It is a Sanskrit word derived from Yuj which means to Unite in its ordinary sense.
S: It’s a system of mental and physical discipline which controls the mind and the body.

A) QPRS B) PRQS
C) SQPR D) SPQR
 
Answer & Explanation Answer: B) PRQS

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2192