The answer would have to be 7
Answer:
Explanation:
public class Event
public final static int PRICE_PER_GUEST = 35;
public final static int CUT_OFF = 50;
//Attributes
private String eventNum;
private int noOfGuest;
private int price;
/**
* param eventNum the eventNum to set
*/
public void setEventNum(String eventNum)
this.eventNum = eventNum;
/**
* param noOfGuest the noOfGuest to set
*/
public void setNoOfGuest(int noOfGuest)
this.noOfGuest = noOfGuest;
this.price = this.noOfGuest * PRICE_PER_GUEST;
/**
* return the eventNum
*/
public String getEventNum()
return eventNum;
/**
* return the noOfGuest
*/
public int getNoOfGuest()
Answer:
Approaching a problem and finding a solution within given guidelines.
Explanation:
To be a good engineer, you simply need to know how to create a solution to a problem with a given set of restraints or guidelines.
For instance, let's say your boss wants you to build a machine that can automate some trivial task so he can use the worker elsewhere. He wants the machine to be low maintenance and under $40,000.
As an engineer, your first thought should be, let's see what this "trivial task" is, and then after your observation, you should begin to pull upon your experience and resources to build a solution that can be low maintenance and under $40,000.
Put simply, when you approach a problem, consider all aspects of the problem and then build a solution that satisfies all requirements.
Cheers.
Answer:
Small points of colored light arranged in a grid, each is formed from three colored lights: red,green,and blue. (RGB), nothing is absorbed,nothing is reflected, just see pure colored lights.
We need to define the variables,
So,

Therefore, the probability that the repair time is more than 4 horus can be calculate as,

The probability that the repair time is more than 4 hours is 0.136
b) The probability that repair time is at least 12 hours given that the repair time is more than 7 hoirs is calculated as,


The probability that repair time is at least 12 hours given that the repair time is more than 7 hours is 0.63