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: Clicking a __<u>dead link</u>___ takes you to a webpage that no longer exists or has been moved.
Answer:
C. It adds many new examples to clarify the framework concepts.
Explanation:
COSO is short for Committee of Sponsoring Organizations of the TreadWay Commission.The original framework released by COSO was the Internal Control-Integrated Framework, published in the year 1992. The purpose of this framework is to help in establishing effective internal control in businesses.
The updated framework was published in the year 2013. The purpose of this updated frame work includes;
- helping businesses in establishing an effective and efficient internal control system that would help them in the implementation and documentation of issues affecting their businesses.
- It also provides users with more precise guidelines which does not take away from the original framework, but rather builds on it.
Answer:
The network is a LAN.
Explanation:
Computer networks are interconnection and intercommunication of computer devices to share resources. There are several types of computer networks, they are, LAN or local area network, WAN or wide area network, PAN or personal area networks, etc.
A LAN is a network of computer devices ranging from a floor of a building to the building of more. WAN is a network of LANs while a PAN is just a short 10-meter network between two Bluetooth connected devices.
The network described in the question is a wireless LAN or WLAN which is still a local area network.
Answer:
false
Explanation:
Based on the information provided within the question it can be said that the statement being made is false. This statement does not exemplify Porter's threat of new entrants, since this talks about the threat of new companies entering the same market with the same product in order to compete with the existing competitors in that market. In this scenario the new companies that eventually made Polaroid Bankrupt had an innovative new technology and which people starting using and left the entire Polaroid Market behind.