Answer:
electric
Explanation:
eletric is not a print ouo
Answer:
64
Explanation:
We have given the 32 bit architecture
We know that 1 byte =8 bit
So memory of given architecture 32 bit 
Total memory = 256 bytes
So total number of instruction that fit into 256 bytes 
So total 64 instruction can be fit in 256 byte memory.
Answer:
Answered below
Explanation:
Scanner n = new Scanner(System.in);
System.out.print("Enter number of guests: ");
int numOfGuests = n.nextline();
double pricePerGuest = 35.0;
double totalAmount = numOfGuests * pricePerGuest;
String event = " ";
if ( numOfGuests >= 50){
event = "Large event";
}else{
event = "small event";
}
System.out.print(numOfGuests);
System.out.println(pricePerGuest);
System.out.println( totalAmount);
System.out.println(event);