Searching for "threads"

Q:

In the question two statements are given, followed by two conclusions, I and II. You have to consider the statements to be true even if it seems to beat variance from commonly known facts. You have to decide which of the given conclusions, if any, follows from the given statements.

 

Statement I: All threads are strings

 

Statement II: All fibres are threads

 

Conclusion I: All strings are fibres

 

Conclusion II: All fibres are strings

 

 

A) Only conclusion I follows B) Only conclusion II follows
C) Both conclusions I and II follow D) Neither conclusion I nor conclusion II follows
 
Answer & Explanation Answer: B) Only conclusion II follows

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Statement and Conclusions
Exam Prep: Bank Exams

Q:

Improve the bracketed part of the sentence

 

His condition has only deteriorated, his life (hangs with threads).

 

A) is hanging on threads B) hangs by a thread
C) hangs on a thread D) no improvement
 
Answer & Explanation Answer: B) hangs by a thread

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

A sentence/a part of the sentence is underlined. Four alternatives are given to the underlined part which will improve the sentence. Choose the correct alternative and click the button corresponding to it. In case no improvement is needed, click the button corresponding to "No improvement".

The rays of the sun that is setting glimmer like golden threads.

A) the sunset glimmers B) the set sun glimmering
C) the setting sun glimmer D) No improvement
 
Answer & Explanation Answer: C) the setting sun glimmer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

Nylon threads are made of

A) Polyester polymer B) Polyamide polymer
C) Polyvinyl polymer D) Polysaccharide
 
Answer & Explanation Answer: B) Polyamide polymer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

Q:

What is the difference between processes and threads ?

Answer

- A process is an execution of a program, while a Thread is a single execution sequence within a process.


- A process can contain multiple threads. A Thread is sometimes called a lightweight process.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

public class Threads2 implements Runnable {

public void run() {

System.out.println("run.");

throw new RuntimeException("Problem");

Which among the following is true?

}

public static void main(String[] args) {

Thread t = new Thread(new Threads2());

t.start();

System.out.println("End of method.");

}

}

A) java.lang.RuntimeException: Problem B) run. java.lang.RuntimeException: Problem
C) End of method. java.lang.RuntimeException: Problem D) End of method. run. java.lang.RuntimeException: Problem
 
Answer & Explanation Answer: D) End of method. run. java.lang.RuntimeException: Problem

Explanation:

Only D can be true

Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

What are types of threads?

Answer

User thread


Kernel thread

Report Error

View answer Workspace Report Error Discuss

Q:

What are java threads?

Answer

Java is one of the small number of languages that support at the language level for the creation and management of threads. However, because threads are managed by the java virtual machine (JVM), not by a user-level library or kernel, it is difficult to classify Java threads as either user- or kernel-level.

Report Error

View answer Workspace Report Error Discuss