Taking good care of your child such as feeding them,hugging them,allowing the child to learn,and many others
<span>The name BITNET originally meant "Because It's There Network", but it eventually came to mean "Because It's Time Network".</span>
It won't let me send the answer. It says incorrect answer even though it's not but refer to these notes at the top.
Answer:
Because he is the man who found the concept on input process and output theory.
Explanation:
check this website and follow their courses https://www.eacademy.lk/2019/06/internet-and-www-course.html
It's Free
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