Questions

Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence inPassive/Active Voice

Who burned the food?

A) By who was this food burned? B) By whom was that food burned?
C) By whom was the food burned? D) By whom is this food burned?
 
Answer & Explanation Answer: A) By who was this food burned?

Explanation:

By whom was the food burned?

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2076
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Dyslexia is a perceptual disorder often occurring in persons of normal, or even above average intelligence. The reader is unable to perceive correctly what is on a page. Letters and numbers often appear reversed: "b" seems to be "d","quite" is "quiet" and "from" is "form". The reader tends to leave out letters or words or insert words or letters that are not there. Vowel and consonant sounds may be confused. Many dyslexics are left­handed or able to write with either hand. They often confuse left and right. Learning to speak may also be delayed beyond infancy. The condition seems to be inherited. It may persist into adulthood. However, with early recognition and specialized approaches to teaching reading, most dyslexics can learn to read.

Some researchers believe that latent dyslexia may be aggravated by the way reading is taught. The modern whole­word, or look­and­say, method seems to be more of a hindrance to learning for dyslexics than it is for ordinary pupils. The phonetic method of teaching students to learn letters and sound them out appears to achieve better reading results. The problem of words that cannot be sounded out ­ such as rough, laugh or through ­ is not solved by phonetics. These words must simply be memorized. However, for children with dyslexia the problem can be compounded by the failure of parents or teachers to recognize the condition. This can easily lead to emotional problems for dyslexic children, who cannot understand their failure to keep up with their classmates.


In Dyslexia, letters and figures often appear __________

A) Inverted B) Blurred
C) Reversed D) Clustered
 
Answer & Explanation Answer: C) Reversed

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2076
Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.

But this does not mean

X-phenomena to the body
Y-is a meaningless expression
Z-that the reference of mental

A) YZX B) ZXY
C) YXZ D) XZY
 
Answer & Explanation Answer: B) ZXY

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2076
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2076
Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2075
Q:

What is process synchronization?

Answer

A situation, where several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place, is called race condition. To guard against the race condition we need to ensure that only one process at a time can be manipulating the same data. The technique we use for this is called process synchronization.

Report Error

View answer Workspace Report Error Discuss

1 2075
Q:

Project Time Management

What are the Project Management Processes included in the Project Time Management?

Answer

Activity Definition - Identifying the Specific schedule activities that need to be performed to produce the various project deliverables.


Activity Sequencing - Identifying and documenting dependencies among schedule activities


Activity Resource Estimating - Estimating the type and quantities of resources required to perform each schedule activity


Activity Duration Estimating - Estimating the number of work periods that will be needed to complete individual schedule activities


Schedule Development - Analyzing activity sequences, durations, resource requirements, and schedule constraints to creae the project schedule.


Schedule Control - Controlling changes to the project schedule

Report Error

View answer Workspace Report Error Discuss

0 2075
Q:

Project Cost Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Cost Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets 

  • Project scope statement

  • Work breakdown structure

  • WBS dictionary 

  • Project management plan


             - Schedule management plan


             - Staffing management plan


             - Risk register


II. Tools and Techniques



  • Analogous estimating

  • Determine resource cost rates

  • Bottom-up estimating

  • Parametric estimating

  • Project management software

  • Vendor bid analysis

  • Reserve analysis

  • Cost of quality


III. Outputs



  • Activity cost estimates 

  • Activity cost estimate supporting detail 

  • Requested changes

  • Cost management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2075