Section 1

Preview this deck

while-loop

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

1

All-time users

1

Favorites

0

Last updated

1 year ago

Date created

Mar 1, 2020

Cards (17)

Section 1

(17 cards)

while-loop

Front

Repeatedly executes a block of statements until a specified Boolean expression evaluates to false.

Back

variable

Front

symbolic name associated with a value and whose associated value may be changed.

Back

recursion

Front

programming technique that causes a method to call itself in order to compute a result.

Back

program

Front

set of precise instructions to complete a task.

Back

for- loop

Front

Combines the three elements of iteration—the initialization expression, the termination condition expression, and the counting expression—into more readable code.

Back

flowchart

Front

graphical representation of an algorithm.

Back

operator

Front

The symbols (such as +, -, *, and /) that specify which operation to perform on one or more the operands before and returning a result.

Back

array

Front

collection of items in which each item can be accessed by using a unique index.

Back

do-while loop

Front

Repeatedly executes a block of statements until a specified Boolean expression evaluates to false. The do-while loop tests the condition at the bottom of the loop.

Back

decision table

Front

compact and readable format for presenting the algorithm that involves a large number of conditions.

Back

switch

Front

A statement that allows multi-way branching. In many cases, using a switch statement can simplify a complex combination of if-else statements.

Back

if

Front

if statement that executes a given sequence of statements only if the corresponding Boolean expression evaluates to true.

Back

Algorithm

Front

A set of ordered and finite steps to solve a given problem.

Back

try-catch-finally

Front

handle exceptions, the code that throws exceptions is placed inside a try block, and the code that handles the exceptions is placed inside a catch block, and the code that needs to be executed regardless of whether or not an exception is thrown is placed inside the finally block.

Back

exception

Front

An error condition that occurs during the execution of a program.

Back

for-each loop

Front

Useful for iterating through the elements of a collection.

Back

if-else

Front

statement that allows your program to perform one action if the Boolean expression evaluates to true and a different action if the Boolean expression evaluates to false.

Back