A list of multiple choices is given;
<span>a)
</span>Purchase a home in the city center instead.
<span>b)
</span>Rent the apartment anyway.
<span>c)
</span>Rent the apartment with a roommate.
<span>d)
</span>Purchase a home in the suburbs instead.
The answer is (C)
John should look for an apartment and share it with a
roommate. This will bring down rent expenses to 50% as both John and the
roommate will be cost sharing the rent. If the rent expenses go down by 50%, he’ll
be able to save an additional 10% and use it for other expenses.
Answer:
Microsoft Word.
Explanation:
Microsoft Word is an example of Software, while monitors, keyboards, and a mouse are hardware.
I beleive all of the above for question one
Answer:
A
Explanation:
If they are connected via bluetooth, you can share unlimited amounts of anything.
Answer:
public class Person {
//fields
private int id;
private String name;
private Payment pay;
//constructor
public Person(String name, int id,
int startSal, int startBon){
this.name = name;
this.id = id;
this.pay = new Payment(startSal, startBon);
}
//method get name
public String getName(){
return name;
}
//method get id
public int getId(){
return id;
}
//method get start salary
public int getStartSalary(){
return pay.startSalary;
}
//method get start bonus
public int getStartBonus(){
return pay.startBonus;
}
//inner payment class
private class Payment{
int startSalary;
int startBonus;
public Payment(int sal, int bon){
this.startSalary = sal;
this.startBonus = bon;