• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/37

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

37 Cards in this Set

  • Front
  • Back

The rules that govern the correct order and usage of the elements of a language are called the _____ of the language.

syntax

When a program runs on a computer, the part of the computer that carries out the instructions is called the

CPU (Central Processing Unit)

At each step of its operation, the input to a Central Processing Unit is an _____

instruction

When a program runs on a computer, it is stored in _____

memory

When a program is not running, it is stored on a _____.

hard disk

Mice, trackpads, keyboards, scanners, joysticks are all examples of _____ devices.

input

Monitors, printers, status lights are all examples of _____ devices.

output

A bit is a _____ digit.

binary (0 or 1)

How would you express two hundred million bytes?


How would you express five billion bytes?


How would you express four trillion bytes?

200 MB


5 GB


4 TB

An _____ allocates resources like memory to programs that are running.

operating system

_____ software is any software that is runs with the support of the operating system.

Application

In a network, a computer that performs specific services for other computers on the network is called a _____, while ones that requires specific services for other computers on the network is called a _____

server


client

The binary equivalent of the decimal numeral 6 is


The binary equivalent of the decimal numeral 9 is

110


1001

The binary representation of an even number always ends in _____.


The binary representation of a number divisible by 4 ends in _____

0


00

The decimal equivalent of the binary numeral 1010 is _____


The decimal equivalent of the binary numeral 1111 is _____

10


15

The largest hexadecimal digit is _____

F

Write the hex shorthand for 1111 1010 1101 1110 1101 0001 1101 ?

FADED1D

Write the hex shorthand for 1011 1110 1110 1111 0000 0000 1101 ?

BEEF00D

The hex digits BB can be viewed as short hand for what binary sequence?

1011 1011

Java represents characters using _____

Unicode

With its encoding Java can work with _____(#) characters.

65536

The definition of "programming language" is that it allows us to express an _____.

algorithm

_____ is produced by compilers.


_____ translates source code into executable code

Machine language


A compiler

The ability of a language to let a programmer develop a program on computer system that can be run on other systems is called _____

portability

In object-oriented programming, a _____ is code that allows access to an object's attributes or that carries out some other action for the object.

method

In object-oriented programming, a _____ is a model or template from which objects are created.

class

Carrying out the steps of a program, starting with the first, then the second and proceeding to the last is known as _____ processing.

sequential

An algorithm doesn't allow _____.

ambiguity

In Java, an argument is _____ provided to a method.

information

Changing the flow of control in a program to jump to some pre-written code is known as _____ a method.

calling

Files containing Java code must end with what "extension"?

java

The standard name of the Java compiler is _____

javac

To run a Java program from a command line, we use the _____ method.

java

An error in a program that involves a violation of language rules will be detected at _____ time

compile

Division by zero when the program is executing is an example of a _____ error.

run-time

Words that have a special meaning in a programming language are called _____.

reserved words

The purpose of testing a program with different combinations of data is to expose run-time and _____ errors.

logic