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

help brightness_4 brightness_7 format_textdirection_r_to_l format_textdirection_l_to_r

איזו משיטות אלה של המחלקה Thread משמשת להשעיית תהליך למשך פרק זמן מסוים?

1
done
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: 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
מיין לפי

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

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
מיין לפי
by Lior Linoi Aftabi
Lior Linoi Aftabi 0 נקודות · יותר מ-6 חודשים
מוניטין: 14
למה זה יתן שגיאה?
by
by Omri Peretz
Omri Peretz 1 נקודות · יותר מ-6 חודשים
מוניטין: 59
אין מימוש של המתודה run
by

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

1
done
by
מיין לפי

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

1
done
by
מיין לפי

איזה מהבאים הוא תהליך של כתיבת מצב של אובייקט לזרם בתים?

1
done
Explanation: Serialization is the process of writing the state of an object to a byte stream. This is used when you want to save the state of your program to a persistent storage area.
by
מיין לפי

איזה מהתהליכים הבאים מתרחש באופן אוטומטי על ידי הJava runtime system?

1
done
Explanation: Serialization and deserialization occur automatically by java runtime system, Garbage collection also occur automatically but is done by CPU or the operating system not by the java runtime system.
by
מיין לפי
by Lior Linoi Aftabi
Lior Linoi Aftabi 0 נקודות · יותר מ-6 חודשים
מוניטין: 14
גם הGARBAGE COLLECTOR מתבצע אוטומטית לא?
by
by Dvir Zandany
Dvir Zandany 0 נקודות · יותר מ-6 חודשים
מוניטין: 1
כן אבל לא על ידי Java runtime system
by
by ליאור אמיתי
ליאור אמיתי 1 נקודות · יותר מ-6 חודשים
מוניטין: 15
לפי הGPT זה כן מתבצע אוטומטית בJava runtime system
by
by Gil Ari Agmon
Gil Ari Agmon 0 נקודות · יותר מ-6 חודשים
מוניטין: 90
ש פה 2 שאלות כאלה זהות התשובה הנכונה בוודאות זה *כל התשובות* JRS - שם כולל לכל המערכת (כולל IDE) (תגובה מהשאלה השנייה)
by
by Gil Ari Agmon
Gil Ari Agmon 0 נקודות · יותר מ-6 חודשים
מוניטין: 90
לא משנה, השאלה השנייה עם תשובות שונות אז זאת לא אותה שאלה
by

איזה מהבאים הוא ממשק שליטה על תהליכי serialization and deserialization?

1
done
by
מיין לפי

איזה ממשק מהבאים מרחיב את ממשק DataOutput?

1
done
Explanation: ObjectOutput interface extends the DataOutput interface and supports object serialization.
by
מיין לפי