type of errors
Algorithm
Debugging
random
100

what are the 3 types of errors?

syntax error

run-time error

logic error


100

in five seconds give the value of 5!=

120

100

what indicate when your code underlined in red?

error

100

what is our computer science teacher's full name

Gage Bechard

200

  _______ is a great problem-solving method in computer programming.

trial and error

200

what should be not in include in Algorithm

human judgement
200

when there is red line under your code, press which two function key can help you fix the code?

Alt-Enter

200

when the program prompted the user to enter an integer but the user enter a string, what commands can prevent this happening>

try....catch

300

what type of error is state in the question?

int num1 = 6

int num2 = 7

int sum = sum1 - sum2

System.out.println("the sum of the two number is  : " + sum);

logic number

300

____is sort of like a short form of writing that is between normal English and computer programming language.

Pseudocod

300

Taking the time to properly ___ and ___ your program is an important first step in limiting the bugs that your program will have. 

what should be fill in the blank?

plan 

design

300

how do you know if an integer is positive or negative?

modulus division(%)

400

what type of error is state in the question?

Systrem.out.println("Enter numbers of candies you want to buy: ");

syntax error

400

which will not use in an Algorithm?

A. flowchart

B. top-down design

C. Pseudocode

D. outline

D. outline

400

what indicate when your code underlined in red?

error

400

what is the difference between top-down design and flowchart?

top-down shows input output and process

flowchart is just the processing executive

500

as you finish the programming, the system tell you can not find the main class, what type of error it is ?

logic error!

500

Written as a rule, what is the fibonacci sequence?

xn= xn-1+ xn-2

500

state at least 3 ways decrease bugs

1.Proper Program Design

2.Having Resources atHand

3.make the Most Out of the Integrated Development Environment

4. NetBeans Code Assistance

5. Reading Error Messages

500

the purpose of Iteration? (roughly)

continually try out solutions, refining each one, and getting closer to the end goal with each attempt.

M
e
n
u