The answer is C Excel. Excel allows you to make spreadsheets.
Hope this helps :-)
It might be an 81 because if you fail 0/100 yo grade is going DOWN
Answer:
A criteria in query is used to compare to query field values so as to determine whether to include the record that contains each value.
Explanation:
A criteria in query is used to compare to query field values so as to determine whether to include the record that contains each value. Query criteria is used to limit the result from a query retrieving only specific items.
Only when an item matches all the criteria can it be shown as a query results. Query criterias can be simple making use of basic operators and constants while some may be complex, and use functions, special operators,.
Answer:
Free and open-source software makes source code available for use, modification, and redistribution as long as licensing terms are met.
Explanation:
Open-source software is software you can find and use for free.
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);