Questions

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 2007
Q:

Leonardo Da Vinci used drawings to explore ideas in

A) Mathematics B) Science
C) Art D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2007
Q:

Brownish film formed on iron when left in open is called?

A) Dust B) Shovel
C) Spade D) Rust
 
Answer & Explanation Answer: D) Rust

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2007
Q:

Who has been elected as Rajyasabha Deputy Chairman in August 2018?

A) R. Venkaiah Naidu B) Harivansh singh
C) Niteesh Kumsr D) Hari Prasad
 
Answer & Explanation Answer: B) Harivansh singh

Explanation:

The Deputy Chairman of the Rajya Sabha presides over the proceedings of the Rajya Sabha in the absence of the Chairman of the Rajya Sabha. The Deputy Chairman is elected internally by the Rajya Sabha.

 

NDA's Harivansh Narayan Singh becomes Rajya Sabha Deputy Chairperson on the opponent Hari Prasad.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2006
Q:

What is the world's least densely populated country?

Answer

Mongolia

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2006
Q:

Explain compiler?

Answer

compiler is used to translate the high-level language program into machine code at a time. It doesn't require special instruction to store in a memory, it stores automatically. the execution time is less compared interpreter.


A compiler is a program that translates a source program written in some high-level programming langualge (such as Java) into machine code for some computer architecture (such as the Inter Pentium archiecture).

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2006
Q:

What would be the output of the following program?

main()

{

    int i = -3, j =2, k =0, m ;

    m = ++j && ++i || ++k ;

    Printf ( "\n%d%d%d%d", i , j , k , m );

}

Answer

-2  3  0  1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2006
Q:

What would be the output of the following program?

main()

{

    printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141);

}

Answer

4  8  10

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2006