Answer:
// program in java.
import java.util.*;
// class definition
class Main
{// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// object to read input
Scanner scr=new Scanner(System.in);
// ask to enter name
System.out.print("Enter Your name: ");
// read name from user
String NAME=scr.nextLine();
// print message
System.out.println("Greetings,"+NAME);
}catch(Exception ex){
return;}
}
}
Explanation:
Read name from user with the help of scanner object and assign it to variable "NAME".Then print a Greetings message as "Greetings,NAME" where NAME will be replaced with user's input name.
Output:
Enter Your name: Rachel
Greetings,Rachel
Answer:
Software program.
Explanation:
Unlike hardware which describes physical entities of a computer, a software program or simply a program (or even simply, a software) is a set of instructions or data that commands the computer on specific tasks to be performed and how they (the tasks) are performed. Examples of a software are internet browser applications such as Google Chrome, Internet Explorer, and Mozilla Firefox and graphics applications such as Photoshop and Corel Draw.
Hope this helps!
A only is correct.
Constant-velocity joints are able to transfer torque with zero angular velocity variation and near-zero vibration to the drive wheels at a constant rotational speed, while still accommodating the up-and-down movement of the suspension. In most cases, they are used in front wheel drive vehicles.
Answer
<u>Defination</u><u>-</u><u>:</u>
A control statement is a statement and a statement whose execution its control.
<u>Types-:</u>
- Selection Statement
- Iteration Statement
- Unconditional branching Statement
Considering the computer system technology, the RAID configuration, known as byte-striped with an error check, and spreads the data across multiple disks at the byte level with one disk dedicated to parity bits is known as <u>RAID Level 5.</u>
<h3>What is the RAID Level 5?</h3>
RAID Level 5 is the Redundant Array of Inexpensive (or Independent) Disks Level 5. RAID Level 5 works on strips to transfer data over multiple disks in an array.
RAID Level 5 is also known to record information, with the ability to withstand numerous failures.
<h3>
Other types of Redundant Array of Inexpensive (or Independent) Disks</h3><h3 />
- RAID level 0
- RAID level 1
- RAID level 2
- RAID level 3
- RAID level 4
Hence, in this case, it is concluded that the correct answer is RAID Level 5.
Learn more about RAID configuration here: brainly.com/question/9305378