Searching for "execution"

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: About 30 new hydro projects are now under execution with an installed capacity of 5,600 MW.
Q: However, with the rapid increase in demand for power, higher priority was given to the pithead super thermal power stations as their gestation period was smaller than that of the hydel schemes.
R: Many projects were taken up for execution after independence and at one time (1962-63), the capacity contribution from hydro schemes was equal to thermal schemes.
S: The first hydro generating unit in India was commissioned in Darjeeling (W.Bengal) in 1897.

 

A) RQPS B) SRQP
C) QPSR D) PQRS
 
Answer & Explanation Answer: B) SRQP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

Read each sentence to find out whether there is any grammatical error in it. The error, if any, will be in one part of the sentence. If there is no error, the answer is ‘No error’. (Ignore the errors of punctuation, if any.)

The coverage of schemes remain /patchy because of rampant / leakages, and poor execution / and monitoring. / No error

A) The coverage of schemes remain B) patchy because of rampant
C) leakages, and poor execution D) and monitoring
 
Answer & Explanation Answer: A) The coverage of schemes remain

Explanation:

'The coverage of schemes remains' should be used to make the sentence correct. Here the noun is 'coverage' that’s why we should use 'remains' instead of 'remain'.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

In computer processing, __________ selects processes from the pool and loads them into memory for execution.

A) Job Scheduler B) Resource Scheduler
C) CPU Scheduler D) Process Scheduler
 
Answer & Explanation Answer: A) Job Scheduler

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

Q:

A program in execution is called

A) Procedure B) Function
C) Process D) Instruction
 
Answer & Explanation Answer: C) Process

Explanation:

We know that a computer program is a set of instructions to be executed. And if the instructions are in execution, then it is called as process. In brief, a program in execution is called as process.

Report Error

View Answer Report Error Discuss

Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Direct and Manage Project Execution Phase?

Answer

I. Inputs



  • Project management plan

  • Approved corrective actions

  • Approved preventive actions

  • Approved change requests

  • Approved defect repair

  • Validated defect repair

  • Administrative closure procedure


II. Tools and Techniques



  • Project management methodology

  • Project management information system


III. Outputs



  • Deliverables

  • Requested changes

  • Implemented change requests

  • Implemented corrective actions

  • Implemented preventive actions

  • Implemented defect repair

  • Work performance information

Report Error

View answer Workspace Report Error Discuss

Q:

Give the sequence of execution of the various report triggers?

Answer

Before form , After form , Before report, Between page, After report.

Report Error

View answer Workspace Report Error Discuss

Q:

How can we increase the execution time of a php script?

Answer

By the use of void set_time_limit(int seconds)


Set the number of seconds a script is allowed to run. If this is reached, the script returns a fatal error. The default limit is 30 seconds or, if it exists, the max_execution_time value defined in the php.ini. If seconds is set to zero, no time limit is imposed.


When called, set_time_limit() restarts the timeout counter from zero. In other words, if the timeout is the default 30 seconds, and 25 seconds into script execution a call such as set_time_limit(20) is made, the script will run for a total of 45 seconds before timing out.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

Q:

What is the kind of execution does sequence point allow?

A) Non-overlap B) Overlap
C) Concurrent D) None of these
 
Answer & Explanation Answer: A) Non-overlap

Explanation:

To resolve all the side-effects in the program, the sequence point should not be overlapped.

Report Error

View Answer Report Error Discuss

Filed Under: C++