• 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/25

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;

25 Cards in this Set

  • Front
  • Back
what does cd ttt do?
Change to Directory tttt
what does the dir command in DOS do?
lists the contents of the directory
What is Machine Language?
Machine Dependent uses a sequence of 1's and 0's
What is Assembly Language?
English abbreviations to represent operations of the computer
What is a High Level Language?
To complicated for a computer. Has structures that are highly recognized by humans
How would you compile the file Welcome.java in DOS?
javac Welcome.java
How would you run the file Welcome.java?
java Welcome
How do you use comments in Java?
//..... or /*...... */
What are the rules for Identifiers?
sequence of letters capital and lowercase with digits, underscores, and dollar signs. Can NOT begin with a digit.
How do you print the " in java?
\"
What does \n do?
Moves the cursor to the next line
What does /r do?
Returns the cursor to the beginning of the the line.
How many bits is byte?
8
++ and -- fall where into the arithmetic hierarchy?
Below () and above * / %
The character data type, char, is used to represent ?
a single character
What are the possible values for a boolean expression?
True False
What is used in Java to denote that something is equal, and not equal to?
== and !=
What is used to convert strings into integers?
Integer.parseInt()
What is the symbol for the Binary Operator Or?
|
What does a Break Statement do?
causes immediate exit from that structure
What does the Continue Statement Do?
Causes the computer to skip one value/iteration
What is Divide And Conquer?
Dividing a complex problem into multiple simpler problems.
What is each triangle called in Divide and Conquer?
a Node
What is the method Return Type?
the data type of the value the method returns
If a method does not return a value the return type must be specified as?
Void