3.1 Fundamentals Of Programming Flashcards
Name the two data types.
Primitive & Non-Primitive.
What do Primitive data types include?
- Byte.
- Short.
- Int.
- Long.
- Float.
- Double.
- Boolean.
- Char.
What do Non-Primitive data types include?
- String.
- Arrays.
- Classes.
How many Primitive data types are there in Java?
Eight.
Define a Byte data type.
Stores whole numbers from -128 to 127.
Define the size of a byte data type.
1 Byte (8 bits).
Define a Short data type.
Stores whole numbers from -32,768 to 32,767.
Define the size of a Short data type.
2 Bytes (16 bits)
Define an Int data type.
Stores whole numbers from -2,147,483,648 to 2,147,483,647.
Define the size of an Int data type.
4 Bytes (32 bits).
Define a Long data type.
Stores whole numbers from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.
Define the size of a Long data type.
8 Bytes (64 bits).
Define the data type Float.
Stores fractional numbers. Sufficient for storing six to seven decimal digits.
Define the size of the Float data type.
4 Bytes (32 bits).
Define a Boolean.
Stores true or false values.
Define the size of a Boolean.
1 Bit.
Define a char.
Stores a single character/letter or ASCII values.
Define the size of a char.
2 Bytes (16 bits).
Define the two primitive number groups.
Integer types & Floating Point types.
Define the purpose of Integer types.
Store whole numbers, positive or negative, without decimals.
Define the valid Integer Types.
- Byte.
- Short.
- Int.
- Long.
Which type you should use depends on the numeric value.
Define a Double data type.
Stores fractional numbers. Sufficient for storing 15 decimal digits.
Define the size of a Double.
8 Bytes (64 bits).
Define the purpose of Floating Point Types.
Represent numbers with a fractional part, containing one or more decimals.
Define the valid Floating Point Types.
- Float.
- Double.
Define the difference between Float and Double.
The precision of a floating point value indicates how many digits the value can have after the decimal point. Whereas the precision of float is only about six or seven digits, double variables have a precision of 15 digits. Therefore, it is safer to use double for most calculations.
Define a Non-Primitive data Type.
A data type that refers to an object. This is why they are also called reference types.
Define the difference between a primitive and non-primitive data type.
Primitive types are predefined in Java, whereas non primitive types are defined by the user within Java.
Non primitive data types can be used to call methods to perform certain operations whereas primitive types can not.
A primitive type must always have a value, whereas non primitives can be defined as null.
Primitive types can be defined at the start with a lowercase letter, whereas non primitives begin with an uppercase letter.
The size of a primitive type depends on the data type, whereas non primitives have all the same size.
Define a record.
A data structure that groups together related items of data.
Define how a record differs from an array.
Records are more complex than arrays as you can store more than one type of data together.
Define the Java.time package class ‘LocalDate’.
Represents a date (year, month, day (yyyy-MM-dd)).
Define the Java.time package class ‘LocalTime’.
Represents a time (hour, minute, second and nanoseconds (HH-mm-ss-ns)).
Define the Java.time package class ‘LocalDateTime’.
Represents both a date and a time (yyyy-MM-dd-HH-mm-ss-ns).
Define the Java.time package class ‘DateTimeFormatter’.
Formatter for displaying and parsing date-time objects.
What method is used to display the current Date?
‘.now( );’
e.g.
LocalDate myObj = LocalDate.now();
What method is used to display the current Time?
‘.now ( );
e.g.
LocalTime myObj = LocalTime.now()
What method is used to display the current Date and Time?
‘.now ( );
e.g.
LocalDateTime myObj = LocalDateTime.now()
Define the purpose of ‘ofPattern ( )’.
Accepts all forms of values, if you want to display the date and time in a different format.
Define an array.
An array is used to store multiple values in a single single variable, instead of declaring separate variables for each value.
What is the syntax to declare an array?
Define the variable type with square brackets.
e.g.
int[] myNum = {10, 20, 30, 40);
Define a multidimensional array
An array containing one or more arrays.
Define the syntax for a multidimensional array.
Add each array within its own set of curly braces.
e.g.
int[][] myNumbers = { {1, 2, 3, 4}, {5, 6, 7} };
How to access the elements of a two dimensional array
Specify two indexes: One for the array one one for the element inside that array.
e.g.
int[][] myNumbers = { {1, 2, 3, 4}, {5, 6, 7} };
int x = myNumbers[1][2];