21. |
What is maximum priority of thread? (થ્રેડની વધારેમાં વધારે પ્રાયોરીટી શું છે?)
|
||||||||
Answer:
Option (c) |
22. |
Which method must be implemented by a Java thread? (Java થ્રેડ દ્વારા કઈ મેથડને ઈમ્પલીમેન્ટ કરવી જરૂરી છે?)
|
||||||||
Answer:
Option (a) |
23. |
Howmany different ways to create Thread in java? (Javaમા થ્રેડ જુદી-જુદી કેટલી રીતે બનાવી શકાય?)
|
||||||||
Answer:
Option (b) |
24. |
Thread can be created by, (થ્રેડ બનાવવા માટે,)
|
||||||||
Answer:
Option (c) |
25. |
How many threads will running during execution of below given Java program?
નીચે આપેલ પ્રોગ્રામના એક્ઝીક્યુશન દરમિયાન કેટલા થ્રેડ રન થશે?
|
||||||||
Answer:
Option (c) |
26. |
Which of following statement is used to know which Java Thread is currently executing? (અત્યારે કયો Java થ્રેડ એક્ઝીક્યુટ થાય છે તે જાણવા માટે નીચે આપેલમાંથી ક્યા સ્ટેટમેન્ટનો ઉપયોગ થાય છે?)
|
||||||||
Answer:
Option (b) |
27. |
Which of following statement is correct about Java Thread? 1) After calling Thread start() method a thread is in runnable state but not yet starts its execution. 2) Thread run() method can also be called directly to create thread. 3) Thread start() method call run() method internally. 4) By calling Thread start() method, Thread will start its exceution directly. Java થ્રેડ માટે નીચે આપેલમાંથી કયું સ્ટેટમેન્ટ સાચું છે? 1) થ્રેડની start() મેથડ કોલ કર્યાબાદ થ્રેડ runnable સ્ટેટમા હોય પરંતુ તેનું એક્ઝીક્યુશન હજુ શરૂ થશે નહિ. 2) થ્રેડ બનાવવા માટે થ્રેડની run() મેથડને પણ ડાયરેક્ટ કોલ કરી શકાય. 3) થ્રેડની start() મેથડ ઇન્ટરનલી run() મેથડને કોલ કરે છે. 4) થ્રેડની start() મેથડને કોલ કરવાથી થ્રેડનું એક્ઝીક્યુશન ડાયરેક્ટ શરૂ થાય છે.
|
||||||||
Answer:
Option (d) |
28. |
Default priority of newly created thread is __________. (નવા બનાવેલ થ્રેડની ડીફોલ્ટ પ્રાયોરિટી __________ હોય છે.)
|
||||||||
Answer:
Option (b) |
29. |
Which method is used to check whether thread is running or not? (થ્રેડ રન થાય છે કે નહિ તે ચેક કરવા માટે નીચે આપેલમાંથી કઈ મેથડનો ઉપયોગ થાય છે?)
|
||||||||
Answer:
Option (c) |
30. |
Which thread will be executed first if two threads have same priority? (જો બે થ્રેડની પ્રાયોરીટી સરખી હોય તો કયો થ્રેડ સૌપ્રથમ એક્ઝીક્યુટ થશે?)
|
||||||||
Answer:
Option (d) |