Answer:
import java.util.Scanner;
public class TeenagerDetector {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
boolean isTeenager;
int kidAge;
kidAge = scnr.nextInt();
/* Your solution goes here */
isTeenager = (kidAge >= 13) && (kidAge <= 19);
if (isTeenager) {
System.out.println("Teen");
} else { System.out.println("Not teen"); } } }
Explanation:
A condition which check for the teenager age and return a boolean is assigned to isTeenager.
isTeenager = (kidAge >=13) && (kidAge <= 19);
So, if the kidAge is greater than/equal to 13 and less than/19, the boolean isTeenager will be true and the program will output "Teen" else "false" will be output.
The range of age for a teenager is 13 - 19.
C, <span>Word processing can be used to create databases of information.</span>
Answer:
Data acquisition should follow a detailed collection plan that is set in advance.
Explanation:
The process of collection of data over computer with the help of electronic sensors is called data acquisition. The can be related to voltage, current, temperature etc.
For example
Data collection with the help of sensors to monitor weather conditions is an example of data acquisition. In this process data has been gathered on already planned format. Each column or row of data will be helpful to predict the weather condition such as, rain predictions, earthquake prediction etc.
That's why to collect this type of data, collection plan should be set in advance to gather relevant information with the help of data.
The best video format which should be chosen when creating an instructional video is WMV format. At first, you are asked to make video which will <span>compatible with windows systems and since WMV format is a</span><span> part of the </span>Windows Media<span> framework it is a sensible choice. WMV can be also put into the AVI container format which is quite common among the users.</span>
This depends on the number of pixels are in each picture. hope this helps.