Answer:
The answer is "True".
Explanation:
The floating-point constant often known as a decimal number, which represents a specific number that was signed the real number contains an integer component, a decimal portion, and an exponent.
- It shows inviolable float values, that apply to specified values, the value may not modify the program and is called literals.
- It is also known as the basic data types separated into an integer, float, characters, strings and boolean values, that's why this statement is true.
It finds a AMOUNT or percentage of a number.
You find this by multiplying or dividing.
Answer:
// here is code in java.
import java.util.*;
// class definition
class Solution
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// scanner object to read innput
Scanner s=new Scanner(System.in);
// variables
long min,years,days;
long temp;
System.out.print("Please enter minutes:");
// read minutes
min=s.nextLong();
// make a copy
temp=min;
// calculate days
days=min/1440;
// calculate years
years=days/365;
// calculate remaining days after years
days=days%365;
// print output
System.out.println(temp+" minutes is equal to "+years+" years and "+days+" days");
}catch(Exception ex){
return;}
}
}
Explanation:
Read the number of minutes from user and assign it to variable "minutes" of long long int type.Make a copy of input minutes.Then calculate total days by dividing the input minutes with 1440, because there is 1440 minutes in a day.Then find the year by dividing days with 365.Then find the remaining days and print the output.
Output:
please enter the minutes:1000000000
1000000000 minutes is equal to 1902 years and 214 days.
Duplicate Question: https://brainly.in/question/21737632
Answer:
Aperture
Explanation:
The Aperture of the camera determines the brightness or darkness of an image