Questions

Q:

The Republic was also known as a socialist government.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:
Report Error

View Answer Workspace Report Error Discuss

Subject: Indian Politics
Exam Prep: Bank Exams

1 2207
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

 

Chew something over

 

A) Discuss or consider something at length. B) Grab what belongs to someone else.
C) Take a large bite, more than you can eat. D) Talk while eating.
 
Answer & Explanation Answer: A) Discuss or consider something at length.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2207
Q:

What's the maximum hard drive size for FAT16-based Windows system?

Answer

Maximum hard drive size for FAT16-based windows system is 2GB.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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

What are the different functions of Scheduler?

Answer

Scheduler deals with the problem of deciding which of the process in the ready queue is to be allocated the CPU. Short Term Schedulers, Long Term Schedulers

Report Error

View answer Workspace Report Error Discuss

1 2207
Q:

What is mutex?

Answer

Mutex is a program object that allows multiple program threads to share the same resource, such as file access, but not simultaneously. When a program is started a mutex is created woth a unique name. After this stage, any thread that needs the resource must lock the mutex from other threads while it is using the resource. the mutex is set to unlock when the data is no longer needed or the routine is finished.

Report Error

View answer Workspace Report Error Discuss

1 2206
Q:

Project Quality Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Perform Quality Assurance?

Answer

I. Inputs



  • Quality management plan

  • Quality metrics

  • Process improvement plan 

  • Work performance information 

  • Approved change requests

  • Quality control measurements 

  • Implemented change requests

  • Implemented corrective actions 

  • Implemented defect repair

  • Implemented preventive actions 


II. Tools and Techniques



  • Quality planning tools and techniques

  • Quality audits

  • Process analysis 

  • Quality control tools and techniques


III. Outputs



  • Requested changes

  • Recommended corrective actions

  • Organizational process assets (updates)

  • Project management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2206
Q:

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

Rampage

A) Binge B) Frenzy
C) Harmony D) Turmoil
 
Answer & Explanation Answer: C) Harmony

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2206