Answers

SS

Answered

Consider the following class definitions.public class BClass
{
Private int x; public void set(int a) { x = a; } public void print() { }
}public class DClass extends BClass
{
Private int y; public void set(int a, int b)
{
//Postcondition: x = a; y = b;
}
Public void print() { }
}Which of the following is the correct definition of the method set of the class DClass?(i)
Public void set(int a, int b)
{
Super.set(a) ;
Y = b;
}(ii) public void set(int a, int b)
{
X = a;
Y = b;
}

A) Only (i)
B) Only (ii)
C) Both (i) and (ii)
D) None of these

On Jul 24, 2024


A
SS

Answered

Frank would like to be able to select a full paragraph.Which of the following techniques will work?

A) triple-click the paragraph
B) double-click the paragraph
C) click the paragraph
D) move the mouse to the left of the paragraph and then double-click

On Jul 19, 2024


A
SS

Answered

You have selected a cell with a formula.Which of the following can you use to copy that formula to an adjacent cell?

A) mode indicator
B) Page Break Preview
C) scroll bar
D) Fill handle

On Jun 22, 2024


D
SS

Answered

After you have created at least four slides,a scroll bar containing scroll arrows and scroll boxes will appear on the right edge of the window.

On Jun 19, 2024


True
SS

Answered

IBM developed ________ to answer questions on the quiz show Jeopardy!

A) Baxter
B) LoweBot
C) MyBot
D) Watson

On May 23, 2024


D
SS

Answered

The term JVM refers to Java Virtual Memory.

On May 20, 2024


False