Answer:
Explanation:
The following code is written in Java and it asks you for your age and then prints out the exact date from your birthday that you will turn 10,000 days old.
import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("What is your age?");
int age = in.nextInt();
int daysLeft = (10000 - (age*365));
Date birthday = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(birthday);
cal.add(Calendar.DATE, daysLeft);
Date modifiedDate = cal.getTime();
System.out.println(modifiedDate);
}
}
Answer:
pray for me i fell sick
Explanation:
i ate a piece of carrot now im blind
The hottest food in the world is a Ghost Pepper. It is 400 times hotter than Tabasco sauce. It was 1 million SHU's! Hope this helps! ^0^
The correct answer is: Ghost Peppers
Answer:
/28 -- 16 Subnets -- 14 Hosts/Subnet
14*16 = 224 hosts
Explanation:
see https://www.aelius.com/njh/subnet_sheet.html
Answer:
1. t is a function used to transpose a matrix object. The object is passed as an argument to the function.
2. matplot is a graphical function in R used for data visualization.
3. The c function is used to combine arguments.
4. seq is an R function used to derive a range of numbers, optionally specifying a start, stop and step argument or simply a single numeric argument.
5. legends are used in data visualization to list and define items in the graphical presentation.
6. matrix is a function in R used to create and work with matrix and data frame objects.
7. rownames and colnames are functions used to label the row and columns of a data frame in R.
8. The typeof function return the data type of an object.
Explanation:
The R programming language is a dedicated programming language for data analysis and visualization.