5) List
luminous object
any
two
Answers
Answer:
import java.lang.Math;
class Program10_MathematicalFunctions
{
public static void main()
{
// create a double variable
double num1 = 5.0;
double num2 = 3.0;
// Math.pow() with positive numbers
System.out.println(Math.pow(num1, num2)); // 125.0
// Math.pow() with zero
double zero = 0.0;
System.out.println(Math.pow(num1, zero)); // 0.0
System.out.println(Math.pow(zero, num2)); // 1.0
// Math.pow() with infinity
double infinity = Double.POSITIVE_INFINITY;
System.out.println(Math.pow(num1, infinity)); // Infinity
System.out.println(Math.pow(infinity, num2)); // Infinity
// Math.pow() with negative numbers
System.out.println(Math.pow(-num1, -num2)); // 0.008
}
}
Explanation:
Answer:
sun and candle
Explanation:
Luminous objects
The luminous objects are visible as they emit light on their own.
The sun and candle are the two examples.
thanks
hope it helps
mark me brainliest