Question: Java 1) The operator is used allocate memory for an object. a) static b) new c) instance d) alloc e) none of the above 2)
1) The operator is used allocate memory for an object. a) static b) new c) instance d) alloc e) none of the above 2) Which of the following expressions correctly compute 5 + 2? a) result = 5+216; b) result = 5 + 2*exponent(6); c) result = 5+2*Math.exponent(6): d) result = 5 + Math.pow(2, 6); e) none of the above 3) Which of the following is a correct declaration of enumerated type for the sults of a deck of cards? a) enumerated type Suit = { hearts, spades, diamonds, clubs ); b) enum Suit (hearts, spades, diamonds, clubs ); c) enum Suit (hearts, spades, diamonds, clubs) d) enumerated type Suit = {hearts, spades, diamonds, clubs ); e) type enum Suit = { hearts, spades, diamonds, clubs }; 4) Which of the following expressions best represents the condition if the grade is between 75 and 100? a) if (grade != 75 && grade != 100) b) if (75 grade Il grade
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
