01 Introduction Flashcards
It deals about creating objects that contain both data and functions.
Object-Oriented Programming (OOP)
It is a popular programming language (previously named as Oak), created in 1995 owned by Oracle.
Java
It accepts an array of arguments.
Main Function
It is used to print a line on the console.
System.out.println
It prints the enclosed literal string without the new line character.
System.out.print
It is a strongly-typed programming language, which means that you cannot put or assign or store different types of data together.
Java
Larger than int
Long
Numbers with floating points.
float
Larger numbers with floating points.
double
Data should be stored in some ______.
identifier or variable
Variable names should be composed of:
Alphanumeric characters, The dollar sign, Underscore
Variables cannot begin with any _____.
Numbers
In declaring Java variables, this format is followed,
<data_type> <variable_name>
</variable_name></data_type>
It should be declared first before you can make use of them.
variables
It is used to perform operations on variables and values.
Operators