Input and Output Flashcards

(12 cards)

1
Q

It is the process of entering data in software running on a computer through typed text, various types of
files, or mouse commands

A

Input

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

is the data processed by the software that can be directed at printers, screens, monitors, and other
devices that display output.

A

Output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The _____ program is one of the most common first programs when learning a new language, as
it ensures that the beginner is writing a program correctly and using the compiler properly.

A

“Hello World! “

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Java uses ____ to refer to the console output, the output sent to the console.

A

System.out

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The ____
method is part of the Java API, a predefined set of classes used in any Java program that are not part of the
language.

A

println

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

In println it causes the string in the parenthesis to be the output to the computer screen.

A

Print

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

It causes the cursor on the screen to move down to the next line.

A

Ln called as (nextLine)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

It indicate that any class inside the java.util package can be used
and referenced in the program. It includes classes that support collections, data, and calendar operations.

A

*

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The ______ is added to use a predefined method for input. All predefined classes and methods in
Java API are organized into packages.

A

import statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The ______ statement can be used to import the Scanner class of the java.util
package.

A

import java.util.Scanner;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Define if it is True or false, and if false write the correct statement.

All predefined data types and methods in Java API are organized into packages.

A

False √
Correct statement :
All predefined classes and methods in Java API are organized into packages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define if it is True or false, and if false write the correct statement.

The packages that will be used in a program are identified by the import statement.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly