Science, asked by chiragpatel11209, 2 months ago

5) List
luminous object
any
two​

Answers

Answered by Anonymous
2

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:

Answered by ranv3500
1

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

Similar questions
Math, 2 months ago