In java 1.order the following from highest order 1 of precedence to lowest 5. as
ID: 3745387 • Letter: I
Question
In java
1.order the following from highest order 1 of precedence to lowest 5.
assignment =
parentheses ()
addition +, subtraction -
multiplication *, division
comparison ==,!=,<,<=,>,>=
2.A Java class can contain which of the following?
a)Only Methods
b)Only Data
c)Objects
d)Methods and Data
e)All of the above
3.Which of the following correctly declares and initializes an instance of the class String (multiple answers are correct):
a)String s = “Java is good”;
b) String s;
c) String s = ‘Java is good’;
d) String s = new.String(“Java is good”);
e) String s = “Java “ + “ is “ + “good”;
f)String s = new String(Java is good);
Explanation / Answer
1) order of precedence from highest to lowest. 1. parentheses () 2. multiplication *, division 3. addition +, subtraction - 4. comparison ==,!=,= 5. assignment = 2) e) All of the above 3) a) String s = “Java is good”; e) String s = “Java “ + “ is “ + “good”;Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.