Criado por LOUISE MIGUEL SALVADOR
aproximadamente 2 anos atrás
|
||
It is a computer's way to represent
information.
1.Binary Number
2. Array
3. Algorithm
4. Bit
These are used to do something else when the
condition in the if statement isn't true.
1. Conditional Statement
2. Else Statement
3. If Statement
4. Function
It is a powerful multi-platform programming
language.
1. Phyton
2. Java Script
3. Java
4. Ruby
It is a major supplier of web apps.
1. Phyton
2. Java Script
3. Java
4. Ruby
Numbers in ________ are in base 8. This
means that the only legal digits are 0-7.
1. Binary Number
2. Hexadecimal Number
3. Octal Number
4. Decima Number
Numbers in ________ form are in base 16.
1. Binary Number
2. Hexadecimal Number
3. Octal Number
4. Decima Number
It is a type of diagram that represents an
algorithm, workflow or process.
1. Pseudocode
2. Flow chart
3. Process Symbol
4. Decision Symbol
Assembly languages are similar to machine
languages, but they are much easier to program in
because they allow a programmer to substitute
names for numbers.
1. High level Language
2. Low Level Assembly Language
3. Fortran
4. Ada Lovelace
Netbeans began in this year?
2010
1997
1999
1996
The year when Sun Microsystem bought the
netbean?
1. 2010
2. 1997
3. 1999
4. 1996
The “/n” means to insert a new line at this
specific point in the text.
C Style comments starts with //. All the text
after // are treated as comments.
Keywords are predefined identifiers
reserved by Java for a specific purpose. You
can use keywords as names for your
variables, classes, methods …etc.
Character Literals represent single Unicode
characters.
Integer literals represent multiple
characters and are enclosed by double
quotes.
A. int quotient = dividend \ divisor;
B. int remainder = dividend % divisor;
C. System.out.println("Remainder = " + remainder);
A. int first = 10, second = 20;
B. System.out.println("Enter two numbers")
C. System.out.println(first + " " + second);