Answer:
Arduino
Explanation:
<em>Arduino is a free and open-source electronics platform with simple hardware and software. Arduino boards can read inputs, turn on a sensor and transform it into an output, activate a motor, and turn on an LED. Sara may direct her board by sending a series of instructions to the board's microcontroller. To accomplish so, she used the Arduino programming language and the Arduino Software (IDE), both of which are founded on Processing.</em>
Answer:
import java.util.Scanner;
public class num2 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter Name");
String name = in.next();
System.out.println("Enter Age");
int age = in.nextInt();
System.out.println("The age of "+name +" is "+age);
}
}
Explanation:
Java programming language is used to write the code.
The scanner class is used to prompt and receive values for name and age which are stored in the appropriate variables.
The key idea here is using string concatenation in the output statement in order to print the desired output
Answer:
Salvation army or Goodwill and YWCA
Explanation:
The matching tools to the corresponding situation are;
A) Disk Cleaner - Jane notices her computer is slow and needs to delete unwanted files storage.
B) Data Recovery Utility - Phil has a corrupted drive and needs to extract the files he can.
C) Diagnostic Program - Soma wants to check the hardware and software status of the computers at her office.
D) Anti-virus - Zayne needs to scan her computer and remove infected programs.
A) Disk Cleaner; This is a tool that is used to help free up some space on the hard disk. The statement that corresponds to use of disk cleaner is that; Jane notices her computer is slow and
needs to delete unwanted files storage.
B) Data Recovery Utility; This is a tool used to extract data from corrupt storage devices or extract deleted files. The statement that corresponds to use of data recovery utility is; Phil has a corrupted drive and needs to
extract the files he can.
C) Diagnostic Program; This is a software tool that is used primarily to identify or diagnose problems with a particular set of hardware devices. The statement that corresponds to use of diagnostic program is; Soma wants to check the hardware and software status of the computers at her office.
D) Antivirus; This is a security tool used to scan a computer to check for infected files and programs and to remover them. Statement that corresponds to this tool is; Zayne needs to scan her computer and remove infected programs.
Read more about computer diagnostics at; brainly.com/question/8384714