100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

JAVA EXAM WITH 100% CORRECT ANSWERS

Rating
-
Sold
-
Pages
28
Grade
A+
Uploaded on
12-07-2025
Written in
2024/2025

JAVA EXAM WITH 100% CORRECT ANSWERS

Institution
JAVA
Course
JAVA










Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
JAVA
Course
JAVA

Document information

Uploaded on
July 12, 2025
Number of pages
28
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

JAVA EXAM WITH 100% CORRECT
ANSWERS

What does thread safe mean? - Answer-Code that is safe to call by multiple threads
simultaneously

When multithreading, local primitive variables are stored . - Answer-In each thread's
own stack. That means that local variables are never shared between threads. That
also means that all local primitive variables are thread safe.

Can you think of a guarantee to know if a given object is thread safe? - Answer-If an
object created locally never escapes the method it was created in, it is thread safe.

Are object member variables thread safe? - Answer-No, object member variables
(fields) are stored on the heap along with the object. Therefore, if two threads call a
method on the same object instance and this method updates object member variables,
the method is not thread safe.

Are you holding a lock when you access a volatile variable? - Answer-access to a
volatile variable never has the potential to block: we're only ever doing a simple read or
write, so unlike a synchronized block we will never hold on to any lock;

Are you holding a lock when you access a synchronized method? - Answer-access to a
volatile variable never has the potential to block: we're only ever doing a simple read or
write, so unlike a synchronized block we will never hold on to any lock;

In which situation would you not use volatile? - Answer-When we want to read-update-
write as an atomic operation (unless we're prepared to "miss an update"); Accessing a
volatile variable never holds a lock.

What is the most common mistake when starting a thread? - Answer-To call the run()
method of the Thread instead of start(). in that case, the run() method is executed by
the thread that created the thread.

What is a critical section? - Answer-A section of code that is executed by multiple
threads and where the sequence of execution for the threads makes a difference in the
result

,What is a race condition? - Answer-When the result of multiple threads executing a
critical section may differ depending on the sequence in which the threads execute.

How can you prevent race conditions? - Answer-Make sure that the critical section is
executed as an atomic instruction. So that when a thread is executing it, no other can
execute it until the first thread has left the critical section.

How can you avoid race conditions? - Answer-By proper thread synchronization in
critical sections.


If you overwrite clone(), which 3 rules must this method obey? - Answer-1) the new
object should be new: memory address should differ
2) Both should be an object of the same class
3) Both should be in the same state:
a.clone().equals(a) == true

Why do we need to implement the Clonable interface? - Answer-At runtime it would
throw the CloneNotSupportedException if we don't implement the Cloneable interface. A
class implements the Cloneable interface to indicate to the Object.clone() method that it
is legal for that method to make a field-for-field copy of instances of that class.

What is a marker interface? - Answer-A Marker interface, has no method.
Serializable, Clonable are marker interfaces.

How do you clone an object? - Answer-MyClone a = (MyClone) c.clone()
- TypeCast is nessesary.
- handle CloneNotSupportedException

Why can Annotations replace marker interfaces? - Answer-Annotations can convey
metadata about the class to its consumers without creating a separate type for it.
Annotations let you pass information to classes that "consume" it.

What is Double-Checked Locking? - Answer-To reduce the overhead of acquiring a lock
by first testing the locking criterion without actually acquiring the lock.

How do you make an object serializable? - Answer-The class must implement the
java.io.Serializable interface

Java object serialization is performed using which classes? - Answer-Java object
serialization (writing) is done with the ObjectOutputStream and deserialization (reading)
is done with the ObjectInputStream.

What is serialVersionUID? - Answer-In addition to implementing the Serializable
interface, a class intended for serialization should also contain a private static final long
variable named serialVersionUID.

, The serialVersionUID variable is used by Java's object serialization API to determine if a
deserialized object was serialized (written) with the same version of the class, as it is
now attempting to deserialize it into.
If you make changes to the class that affect serialization, you should also change its
serialVersionUID value.

What is escape analysis? - Answer-escape analysis is a method for determining the
dynamic scope of pointers - where in the program a pointer can be accessed.

What is the size of byte? - Answer-8 bits

What is the size of char? - Answer-16 bits

What is the size of short? - Answer-16 bits

What is the size of int? - Answer-32 bits

what is the size of long? - Answer-64 bits

what is the size of float? - Answer-32 bits

what is the size of double? - Answer-64 bits

What is the range of byte - Answer--128 to 127

What is the range of short? - Answer--32,768 to 32,767

What is the range of int? - Answer--2,1 billion to 2,1billion

How do you check if a number is even? - Answer-check if number AND 1 is 0

How do you test if the n-th bit is set? - Answer-Shift n times to the right and then AND

How can you set the n-th bit - Answer-Shift n times to the left and OR

How can you unset the nth bit - Answer-Shift n times to the left and invert, then AND

How can you toggle the nth Bit? - Answer-Shift n times to the left and XOR

How can you turn off the rightmost 1Bit? - Answer-AND with (number - 1)

How can you return only 1 or 0 for the rightmost 1Bit value? - Answer-number & ( -
number)

How can you also declare -x bitwise? - Answer-~x + 1

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Scholarsstudyguide nursing
View profile
Follow You need to be logged in order to follow users or courses
Sold
777
Member since
3 year
Number of followers
475
Documents
14923
Last sold
3 days ago
NURSING

Here you will find everything you need in nursing Assignments, EXAMS AND TESTBANKS. For students who want to see results twice as fast. I strive for my content to be of the highest quality. Always leave a review after purchasing any document so as to make sure our customers are 100% satisfied.

3.9

163 reviews

5
87
4
21
3
25
2
6
1
24

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions