Java Fundamentals Flashcards
Type float has _ bits and double type has _ bits
Type float has 32 bits and double type has 64 bits
What does a cast do
Performs an explicit conversion between incompatible data types
What does it mean java is a strongly typed language
it means that the compiler checks all operations for type errors, eg. variables have to adhere to their defined data types
What does static do?
Static allows a member of a class to be used independently of any object of that class
What is a bytecode?
A set of instructions designed to be interpreted by a java virtual machine. Bytecode results from java source code compilation by the java compiler
What is a default constructor
A default constructor is a constructor that takes no arguments
What is boxing
Boxing is the process of encapsulating a value within an object
What is the function of a constructor?
A constructor initializes an object immediately upon creation:
Books myBook = new Books() //object myBook is initialized by the Books constructor
what is this keyword used for
the this keyword is used in a non-static method to refer to the object that invoked the method
What is unboxing
Unboxing is the process of extracting a value from a type wrapper
Why is java considered portable
Its considered portable because of the java bytecode that can run on a jvm, which in turn runs on different platforms
Why is java considered secure
Java is considered secure because java programs are constrained within the jvm, preventing them from generating harmful side effects that run outside of the jvm
What are the 8 primitive java data types
boolean, short, int, float, double, char, byte,long
What are the restrictions faced by methods declared as static?
- They can only call other static methods
- They must access only static data
- They cannot refer to this or super
What are wrappers
Wrappers are classes that encapsulate a primitive type within an object
What is a bytecode?
A set of instructions designed to be interpreted by a java virtual machine. Bytecode results from java source code compilation by the java compiler
Why is java considered portable
Its considered portable because of the java bytecode that can run on a jvm, which in turn runs on different platforms
A string instance variable has a default initial value of _
A string instance variable has a default initial value of NULL
An integer instance variable has a default initial value of _
An integer instance variable has a default initial value of 0
By default, floating-point literals are of type _
By default, floating-point literals are of type double
By default, integer literals are of type _
By default, integer literals are of type int
Characters in java are indices into the _ character set, and they are _ bit values that can be converted into_ and manipulated with _ operators, such as _ and _ operators
Characters in java are indices into the Unicode character set, and they are 16-bit values that can be converted into integers and manipulated integer operators, such as the addition and subtraction operators
Describe \
Backslash
Describe \b
Backspace
Describe a decimal number system
A decimal number system is based on 10, it goes from 0 to 9
Describe a hexadecimal number system
A hexadecimal is a number system that is based on 16. i.e. it goes from 0 to 9 and then from A to F, with the letters representing 10, 11, 12, 13, 14, 15
Describe a java applet
A java applet is a small dynamic java application that runs on the web, performing tasks such as interactive animation, calculations and other simple tasks without having to send a user request back to the server
Describe a literal
A literal is fixed value that is represented in human-readable form
Describe advantages of encapsulation
- Protects encapsulated data
2. Changes are restricted to the objects or classes
Describe an instance variable
A variable within a class defined outside of a method, which is available to any instance of the class to which it (instance variable) belongs to
Describe an octal number system
An octal is a number system that is based on 8 i.e. the numbers go from 0 to 7
Describe auto-unboxing
Auto-unboxing is the process by java automatically extracts a value from a type wrapper when its value is needed
Describe autoboxing
autoboxing is the process whereby java automatically encapsulates a primitive type into its equivalent wrapper whenever an object of that type is required
Describe encapsulation
In its simplest form, encapsulation is information hiding. It is a concept whereby data and the code that works on the data are combined to form an object, and are hidden from external parts
Describe Inheritance
The process by which an object can inherit the properties of another object
Describe Polymorphism
Polymorphism is a concept that allows a general interface to make use of a general class - one interface taking multiple forms
Describe the advantage(s) of auto-unboxing
Auto-unboxing always creates the right value
Describe the advantage(s) of autoboxing
Autoboxing always creates the proper object, ie compatible types are created
Describe the three select statements available in java
- if - single select statement, selects or ignores a single action
- if…else - double select statement, selects between two actions
- case - multiple select statement, selects among many different actions
Explain Object Oriented Programming
Object Oriented Programming is a programming style that represents ideas as objects that contain data fields(attributes that describe the object) as well as procedures(methods) that operate on the objects. Example a human is an object, whose attribute is age, and has an associated procedure, speak, that the human can do.
Floating-point types can represent numbers that have _ components
Floating-point types can represent numbers that have fractional components
Give an example of auto-unboxing
Integer intBox = 3; //autoboxing
int i = intBox; //auto-unboxing
Give an example of autoboxing
Integer intBox = 3; //autoboxing
Give an example of boxing
Integer boxInt = new Integer(100)
Give an example of unboxing
Integer boxInt = new Integer(100) //boxing int unboxInt = boxInt.intValue() //unboxing
How do you call a static method from outside its class
classname.method()
How do you define an array when you do not know the size of the array?
You use the new keyword, e.g. int [] a; Random rand = new Random(); a = new int [rand.nextInt()];
How do you specify a float literal?
By appending an f or F in front of the literal, eg. 5.2f
How do you specify a long literal?
By appending an L or l in front of the literal, eg. 5L
How does the switch statement work
performs one of many different actions, depending on the value of the expression
In Java, char is an _ 16-bit type
In Java, char is an unsigned 16-bit type
Java does not support unsigned integers. What are unsigned integers?
Unsigned integers are integers that only support positive integers
Java supports signed integers. What are signed integers
Signed integers are integers that support both positive and negative integers
Java Virtual Machine
a JVM is part of the java runtime architecture that is responsible for the interpretation of the java bytecode
public static void main(String args[]){}
explain main
main is the class from which all java applications execute
public static void main(String args[]){}
what does static do
Static allows main to be called before an object of the class has be created
The smallest type of an integer is called _
the smallest type of an integer is a byte
True or False, the order of initialization follows the order in which the variables are defined within a class
True
True or False, variables declared inside a method are initialized by java
False - variables declared inside a method are not initialized by java
True or False, you cannot apply the static keyword to local variables, it only applies to fields (instance variables)
True