RECIT Flashcards
an array is a collection of entities of different types
false
insert comments in java code
//
print line on console
System.out.println
They are used to perform operations on variables and values
operators
in java, it is possible to inherit attributes and methods from one class to another
true
java is short for “JavaScript”
false
this conditional statement allows a variable to be tested for its equality against a list of values
switch
!(!(FALSE || TRUE) && (TRUE && TRUE))
true
!(!(!(!(!(TRUE && FALSE)))))
true
the decrement operator decreases the current value by
1
deals about creating objects that contain both data and function
object oriented programming
embodiment of a class
object
keyword to return a value inside a method
return
in for-each traversal, referred to as the variable that will accept the values from a collection
iterator variable
scanner method that reads an int (integer) value
NextInt()
statement that used to stop a loop
break
data types that are enclosed in single quotes
characters
referred to as the location of an element in an array
indices
the break statement immediately terminates the loop if the condition is true
true
scanner method that reads a string value
nextLine()
the syntax of a while loop is while(statement) {//condition};
false
the first element of an array is found at index 1
false - 0
create a method in Java
methodName()
one of the components of for loops which performs the updates on certain variables that were used in the loop
iterator
for an OR operator to return true, only one input/operands should be true
false