what are the 3 types of errors?
syntax error
run-time error
logic error
in five seconds give the value of 5!=
120
what indicate when your code underlined in red?
error
what is our computer science teacher's full name
Gage Bechard
_______ is a great problem-solving method in computer programming.
trial and error
what should be not in include in Algorithm
when there is red line under your code, press which two function key can help you fix the code?
Alt-Enter
when the program prompted the user to enter an integer but the user enter a string, what commands can prevent this happening>
try....catch
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
____is sort of like a short form of writing that is between normal English and computer programming language.
Pseudocod
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
how do you know if an integer is positive or negative?
modulus division(%)
what type of error is state in the question?
Systrem.out.println("Enter numbers of candies you want to buy: ");
syntax error
which will not use in an Algorithm?
A. flowchart
B. top-down design
C. Pseudocode
D. outline
D. outline
what indicate when your code underlined in red?
error
what is the difference between top-down design and flowchart?
top-down shows input output and process
flowchart is just the processing executive
as you finish the programming, the system tell you can not find the main class, what type of error it is ?
logic error!
Written as a rule, what is the fibonacci sequence?
xn= xn-1+ xn-2
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
the purpose of Iteration? (roughly)
continually try out solutions, refining each one, and getting closer to the end goal with each attempt.