Test 1 Flashcards
What is the first part of any java class?
public class classname { }
Does indenting matter in Java?
No, but it is used to improve human readibility
What is the first thing you have to put into any java class?
the main method.
public static void main(String[] args){
}
What is a function called in java?
A Function is referred to as a method in Java
How do you create a single line comment in java?
//
How do you create a multi line comment in java?
/* * */
How do you create a javadoc?
/**
*
**/
what needs to go at the end of every line of code in java that doesn’t have a }?
;
similar to CSS
In java, What has to be stated for creating variables?
the variable has to have their data type declared, unlike python.
int x = 5 ** the variable x is now an integer type variable and can never be changed to a different data type**
Whats the first two things that needs to be done when dealing with user input in java?
You have to import the scanner utility by typing: import java.util.Scanner then Scanner input = new Scanner(System.in);
What are some of the methods used to use the scanner utility?
nextInt() and nextDouble() for numeric input, and next() to get a single word or nextLine() to get an entire line.
How do you use the equivalent to the print function from python in java?
System.out.println()
The single quote and double quotes are interchangeable in python, is that the case for Java?
No, the single quotes are used for the char datatype and represent one character, and the double quotes are used for strings and represent multiple characters.
What are the two forms of data types in java?
Primitive and Object(reference)
What is a Primitive data type?
primitive data types represent a single value, that has no attributes or methods
What is an Object(reference) data type?
Object data types represent chunks of data (fields) with code attached (methods)
How do you do integer division in java?
/ not like // in python.
How do you do the power of in java?
with the module Math.pow()
How do you convert types in java? and what is it called?
To convert types in java, you put the name in brackets in front of the expression. This is known as type casting, or casting for short. (int) 5.0 …… makes it 5
When creating a method, do you have to pass the type?
You only have to declare the type if the method is returning that type. ex. public int myMethod(){ } ……..
if there is no return then you simply replace the int above with void
in the method:
public void myMethod(){
}
what does the void indicate?
The void indicates that the method does not return any value.
What does the GET method do?
It returns something back to the class that is calling the method. so make sure you declare the proper data type that is being returned. (Read Access)
What does the SET method do?
it passes whatever parameter you are setting & defines a variable with no return. use void since there is nothing being returned. (Write Access)
Do constructors have a pass type?
No just leave it blank,, no void, not data type.
What happens if a set method is made private?
only other methods can call upon that method
Whats the difference between methods and constructors?
Constructors are defined as they are initiated and cannot be called upon later. Methods can be used as a tool later on.
How do you know when a method should be split into different methods?
When you can clearly see different parts of the method that could easily act on their own.
when do you want to make constant variable and how do you do it?
if you never want it to be changed again, and you use the final method ex private final double b;
What is the difference between these two statements?
c1.getB();
System.out.println(c1.getB());
the first one returns the location in memory of the object. ex. examReviewClass@5e2de80c
the second one prints the value inside of that variable in the method. ex. 4.5
What does the underlined items in a UML diagram mean?
it means they are static
what does static mean?
it can be accessed by the other classes without first creating an object.
what is the naming convention of a constructor?
it has to have the exact same name as the class it is in.
what is overloading a constructor and how does it work?
Overloading a constructor is basically building a bunch of different constructors with different possible scenarios for handling input. It allows someone to use the constructor and pass no parameters, or pass different types of parameters
how do you check if two methods are equal?
you have to build a third method designed to check if both methods are equal.
if two method prove true when checking with == what does that mean?
they are aliases and both are pointing to the same object.
if typing an integer but wanting to save into a long what needs to be done?
you need to put a lower case L on the end of the number, or cast it.
if typing a double but wanting to save it as a float what needs to be done?
you need to put a lower case f on the end of the number, or cast it.
what are the only two primitives that you don’t have to cast or put a special symbol on the end?
integers & doubles
what is wrong with this piece of code?
(int)Math.random() * 5
this is going to always be 0 because the math.random gets casted into an int first, which truncates the decimal point and on.
So you have to bracket the random first. ex.
(int)(Math.random() * 5)
what is the shortcut for public static void main?
psvm + tab
what is the shortcut for System.out.println() ?
sout + tab
how do you check if two string are equal?
string1.equals(string2);
how does automatic casting work when dealing with integers, doubles, and strings?
int + double returns double, string + anything = string
whats the one arithmetic operation java does not support for strings?
*
What is a package?
a library of classes
Explain how objects work.
An object has characteristics, or ATTRIBUTES.
The Values of an object’s attributes with the object a STATE. The actions that an object can take are called behaviours or METHODS.
What is encapsulation?
Hides the fine detail of what is inside the capsule, only lets the other programmers know how to use it, not how it actually works.
What is polymorphism?
Polymorphism - Allows the same program instruction to mean different things in different contexts. For example, a method named showOutput might display the data in an object. But the number of data items it displays and their format depend on the kind of object that carries out the action.
What is inheritance?
Inheritance - a way of organizing classes. You can define common attributes and behaviors once and have them apply to a whole collection of classes. By defining a general class, you can use inheritance later to define specialized classes that add to or revise the details of the general class.
What is the name of a variable technically called in java?
an identifier
What is the naming convention for class names?
The names of class variables start with a capital and continue camelCasing : ClassVar
What is the naming convention for primitives?
The names of a primitive variable start with a lower case the camelCasing: primVar
What is the naming convention for constants?
All capitals and underscores.
DAYS_PER_WEEK
How do you declare a constant variable?
with the final method:
Public static final Int DAYS_PER_WEEK = 7;
What is the incremental operator?
++ (adds 1)
If before, the increment or decrement is done first then the variable is given
If after, the variable is given and then the increment or decrement is done to the variable
what is the Decremental operator?
– (subtracts 1)
If before, the increment or decrement is done first then the variable is given
If after, the variable is given and then the increment or decrement is done to the variable
what is the difference between initializing and declaring a variable?
Initialize means creating first time, declaring means assigning to current variable.
Initialize & Declare: int i = 0;
Initialize: int i;
Declare: i = 1;
What is the difference between a while loop, and a do while loop?
While: while something is true, execute block of code until condition is not true
Do: executes the loop one time no matter once, then checks condition to see if continue.
So while loops execute the block of code from 0 to infinite, where Do while loops at least execute block of code once.
If the scanner function is not acting as you expected what is the first thing you should try?
Flushing the scanner, by calling an empty scanner method before the one acting weird.
when do you not need to import a class or package?
if it is in the same local folder the current class is in.
when do you need to use the this. method in constructors?
when the arguments used in the constructor have the same variable name as the class it is in.
How do you negate a boolean expression?
by putting ! infront of the boolean expression surrounded by brackets. ex.
(!(x > y)) or (!(variable))
can you use non static variable in a static method?
No
What is another way to manipulate strings?
StringBuilder Class Object
or import java.io.*;
in a nested if-else statement, what do the else statements correlate to the if statements?
In an if-else statement, each else is paired with the nearest preceding unmatched if unless brackets are used for control flow
What is the proper way to build out a multi-branch nested if statement?
if (balance > 0) System.out.println("Positive balance"); else if (balance < 0) System.out.println("Negative balance"); else if (balance == 0) System.out.println("Zero balance");
what is the exit method and how do you use it?
Sometimes your program can encounter a situation that makes continuing execution pointless. In such cases, you can end your program by calling the exit method, as follows:
System.exit(0);
if variable b is a boolean with a value of true, which is correct? if (b){} or if (b == true){}
both are completely valid
What is short circuit evaluation when dealing with boolean statements?
Java evaluates the first subexpression, and if that is enough information to learn the value of the whole expression, it does not evaluate subsequent subexpressions.
how is a switch statement built out?
switch (eggGrade) { case ‘A’: case ‘a’: System.out.println("Grade A"); break; case ‘C’: case ‘c’: System.out.println("Grade C"); break; default: System.out.println("We only buy grade A and grade C."); break; }
Sometimes you want a case without a break statement if you want it to run more than one
how is the do while loop structured?
do { First_Statement Second_Statement . . . Last_Statement } while (Boolean_Expression);
in the for loops opening statement what are the three sections needed?
where to start, where to end, and how much to increment.
ex. for (int counter = 1 ; counter < 10 ; counter++)
can you use break statements in loops?
yes if the program calls for it, just like in nested if statements. should be avoided if possible
what is the difference between a break statement and a continue statement in a loop?
the break statement ends the loop, the continue statement just ends that current iteration of the loop and starts the next iteration. should both be avoided in all loops if possible
how do you build a getter?
public String getBreed(){
return breed;
}
we chose string but that could have been int if the datatype was an int etc.
how do you build a setter?
public void setBreed(String b){
breed = b;
}
setters are always void because they never return a value
how do you call on a getter?
System.out.print(dog1.getBreed());
how do you call on a setter?
dog1.setBreed(pug);
when do you use the .this method?
when your constructors are using the same name as variables already used in the class. If you wanted to avoid this you could simply use a different variable name for the constructor.
when creating a class what extra step do you need to take when creating variables?
public int a;
the public needs to be added
what is the scope of a variable?
within its curly braces
how are individual classes saved?
to individual files ending in .java
what are the two kinds of methods?
Java has two kinds of methods: those that return a single value or object and those that perform some action other than returning an item.
can a method that returns also perform an action?
absolutely, as long as it is returning a value at the end.