Answer:
Never gonna give you up
Never gonna let you down
Never gonna run around and desert you
Never gonna make you cry
Never gonna say goodbye
Never gonna tell a lie and hurt you
Never gonna give, never gonna give
(Give you up)
We've known each other for so long
Your heart's been aching but you're too shy to say it
Inside we both know what's been going on
We know the game and we're gonna play it
I just wanna tell you how I'm feeling
Gotta make you understand
Never gonna give you up
Never gonna let you down
Never gonna run around and desert you
Never gonna make you cry
Never gonna say goodbye
Never gonna tell a lie and hurt you
Never gonna give you up
Never gonna let you down
Never gonna run around and desert you
Never gonna make you cry
Never gonna say goodbye
Never gonna tell a lie and hurt you
Never gonna give you up
Never gonna let you down
Never gonna run around and desert you
Never gonna make you cry
Never gonna say goodbye
Answer:
Given the number of platters =5
A. Hence, the number of recording surface =10
B. number of read-write heads =10
C. Number of arms holding the read-write heads = 10
Explanation:
We know that number of recording surface = 2 *( number of platters)
= 2*5=10
And the number of read-write heads = number of recording surface= 10
Also, number of arms holding the read-write head = one for each read-write head= 10
And hence, the above answer.
Answer:
import java.util.*;
public class Main
{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter the first: ");
int first = input.nextInt();
System.out.print("Enter the second: ");
int second = input.nextInt();
input.nextLine();
System.out.print("Enter your name: ");
String name = input.nextLine();
int difference = Math.abs(second - first);
System.out.println(name + ", the difference is " + difference);
}
}
Explanation:
*The code is in Java.
Create a Scanner object to get input from the user
Ask the user to enter the first, second, and name
Calculate the difference, subtract the second from the first and then get the absolute value of the result by using Math.abs() method
Print the name and the difference as in required format
One way that computer networks help to protect data is by backing up the data.
Computer networks are normally formatted to automatically back up all of the data that is stored on them. This protects the data in case of any type of computer system failure.