Search Header Logo

ict5_mt_w5-6_q2

Authored by JB Presa

Computers

12th Grade

Used 2+ times

ict5_mt_w5-6_q2
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the individual values stored in an array called?

Variables

Identifiers

Elements

Collections

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Java, which operator is specifically used to determine the remainder of a division operation?

/

*

-

%

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Explain the difference between declaring an array with values and declaring an array without values (specifying size).

Declaring with values initializes the array elements, while declaring without values only reserves memory.

Declaring with values creates a fixed-size array, while without values creates a dynamic array.

Declaring with values uses less memory.

There is no functional difference; it's just a matter of preference.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Explain the key difference between the == operator and the = operator in Java programming contexts.

== is used for assignment, while = is used for comparison.

== is used to declare variables, while = is used to initialize them.

== and = are interchangeable; they serve the same purpose.

== is used for comparison, while = is used for assignment.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do arrays promote "Effectiveness and Efficiency" in computer programming?

By allowing programmers to write less code to manage large datasets.

By automatically handling data conversions.

By providing built-in sorting mechanisms.

By improving the graphical user interface.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A Java application manages inventory. If currentStock is 100 and itemsSold is 25, write the Java code snippet to update currentStock after itemsSold are deducted, using an arithmetic operator.

currentStock + itemsSold;

currentStock = currentStock - itemsSold;

currentStock * itemsSold;

currentStock / itemsSold;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Declare a Java array named temperatures to store daily high temperatures for a week, and initialize it with arbitrary integer values.

int temperatures = {25, 28, 30, 27, 26, 29, 31};

int temperatures[] = {25, 28, 30, 27, 26, 29, 31};

temperatures[] = new int[7];

int temperatures[7];

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?