Answer:
Already answered , Thanks for points !
Have a good day/afternoon/ night .
Sleepy~
Answer:
The Java code is given below with appropriate comments
Explanation:
//Declare the class
public class CaloriesCount
{
// Definition of the method
public static double PizzaCaloriesPerSlice(
double diameter)
{
// To calculate calories per count
double caloriesPerSlice = PizzaCalories(diameter)
/ PizzaSlices(diameter);
// return the value.
return caloriesPerSlice;
}
// Definition of method to calculate pizza calories.
public static double PizzaCalories(double diameter)
{
// return value
return 2 * 3.14 * (diameter / 2);
}
// definition to return pizza calories.
public static double PizzaSlices(double diameter)
{
return 8.0;
}
// start the main method.
public static void main(String[] args)
{
// Call the method.
System.out.println(PizzaCaloriesPerSlice(24));
}
}
Answer:
lookup function
Explanation:
We can use the lookup function to find some values or reference in a range, we can use this syntax: LOOKUP( value, lookup_range, [result_range] ), where value is what we are going to look for, lookup_range is the single row or column is the range, and result_range is an optional part, in this range we're going to get the value.
Users can use numerical values to set the number of columns and rows in the Insert Table dialog box in PowerPoint. Option A is correct.
<h3>What is the PowerPoint?</h3>
Microsoft or MS PowerPoint is defined as a presentation program that was developed by Forethought, Inc.'s Robert Gaskins and Dennis Austin. In PowerPoint, users can use numerical values to specify the number of columns and rows in the Insert Table dialog box.
Therefore, option A is correct.
Learn more about the PowerPoint, refer to:
brainly.com/question/14498361
#SPJ1