What you should do next is take the pieces apart using things like screwdrivers which would enable you to clean each part individually, as well as access new parts that are beneath.
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
Markup language
used to write web pages
contains markup tags
determines how the text is displayed
Answer:
<exception> header provides functions for exception handling in c++.
Explanation:
Exceptions gives a way to respond to exceptional conditions (like runtime errors) in codes by transferring the control to other special functions called handlers.
Since try,catch and throw can work in the iostream header file.To use more functions like unexpected,current_exception,rethrow_exception we need exception header file.
Answer: EMI(Electromagnetic interference)
RFI(Radio frequency interference)
Explanation: Electromagnetic interference is the emission of the electromagnetic signal that can disturb the working of the other device.It invokes the disturbance that can create error, under-performance mechanism,distortion etc in the equipment.
Radio-frequency interference(RFI) is the radio-frequency signal that interferes the other device by creating noise and distortion. This leads to breaking of the operation and data error.
Other options are incorrect because cross talk is referred as undesired communication between signal ,attenuation is the degradation in the amplitude of any signal and extended length of cabling is increasing the length of the cable.Thus the correct answer is RFI and EMI.