Discuss, Learn and be Happy דיון בשאלות

help brightness_4 brightness_7 format_textdirection_r_to_l format_textdirection_l_to_r

מה הפלט של תוכנית זו?

1
done
by
מיין לפי

מה הפלט של תוכנית זו?

1
done
Explanation: Thread t has been made by using Runnable interface, hence it is necessary to use inherited abstract method run() method to specify instructions to be implemented on the thread, since no run() method is used it gives a compilation error.
by
מיין לפי

מה הפלט של תוכנית זו?

1
done
Explanation: Thread t has been made with default priority value 5 but in run method the priority has been explicitly changed to MAX_PRIORITY of class thread, that is 10 by code ‘t.setPriority(Thread.MAX_PRIORITY);’ using the setPriority function of thread t.
by
מיין לפי
by Mark Tseytlin
Mark Tseytlin 0 נקודות · יותר מ-6 חודשים
מוניטין: 208
אמורה להיות פה שגיאה, אי אפשר להגדיר THIS לThread ממקום סטטי
by
by Ofek Lutzky
Ofek Lutzky 0 נקודות · יותר מ-6 חודשים
מוניטין: 75
אין פה מקום סטטי
by
by Daniel Samira
Daniel Samira 1 נקודות · יותר מ-6 חודשים
מוניטין: 60
למה? אני לא חושב שזה המקרה פה ... הthis הוא על newthread
by
by Mark Tseytlin
Mark Tseytlin 2 נקודות · יותר מ-6 חודשים
מוניטין: 208
כולכם צודקים אני טעיתי
by
by Daniella Kapustyan
Daniella Kapustyan 1 נקודות · יותר מ-6 חודשים
מוניטין: 54
אם לא היית כזה אפס אולי היינו מאמינים לך
by

מה הפלט של תוכנית זו?

1
done
Explanation: Threads t1 & t2 are created by class newthread that is implementing runnable interface, hence both the threads are provided their own run() method specifying the actions to be taken. When constructor of newthread class is called first the run() method of t1 executes than the run method of t2 printing 2 times “false” as both the threads are not equal one is having different priority than other, hence falsefalse is printed.
by
מיין לפי

מהו תכנות מרובה תהליכים?

1
done
Explanation: Multithreaded programming a process in which two or more parts of the same process run simultaneously.
by
מיין לפי

אילו מהבאים הוא סוג של ריבוי משימות?

1
done
Explanation: There are two types of multitasking: Process based multitasking and Thread based multitasking.
by
מיין לפי

עדיפות של THREAD ב- Java היא?

1
done
Explanation: Java assigns to each thread a priority that determines hoe that thread should be treated with respect to others. Thread priority is integers that specify relative priority of one thread to another.
by
מיין לפי

מה יקרה אם שני Threadים בעלי עדיפות זהה נקראים להיות מעובדים (processed) בו זמנית?

1
done
Explanation: In cases where two or more thread with same priority are competing for CPU cycles, different operating system handle this situation differently. Some execute them in time sliced manner some depending on the thread they call.
by
מיין לפי

איזה מהצהרות אלה שגוי?

1
done
Explanation: Thread exist in several states, a thread can be running, suspended, blocked, terminated & ready to run.
by
מיין לפי
by Omer Laufer
Omer Laufer 0 נקודות · יותר מ-6 חודשים
מוניטין: 16
איזה עוד מצבים יש ל Thread?
by
by Lior Linoi Aftabi
Lior Linoi Aftabi 0 נקודות · יותר מ-6 חודשים
מוניטין: 14
terminated וגם runnable
by

מה הפלט של תוכנית זו?

1
done
by
מיין לפי
by avital galper
avital galper 1 נקודות · יותר מ-6 חודשים
מוניטין: 60
למה
by
by Eitan Markman
Eitan Markman 2 נקודות · יותר מ-6 חודשים
מוניטין: 46
זה המימוש של toString במחלקה Thread. מדפיס: [ name, priority, ThreadGroup]
by