Answer:
no
Explanation:
it just deletes the icon. 
 
        
                    
             
        
        
        
Answer:
The CAN-SPAM Act
Explanation:
Email or electronic mail is an information system mechanism of communication, that involves the use of digital devices to initiate communication over the internet. The email uses several protocols like the POP3, IMAP etc.
The CAN-SPAM Act is proposed in the United States law, applicable to email investigations. It requires that a sender provides a mechanism whereby the receiver can opt out of future emails without a fee.
 
        
             
        
        
        
int sum = 0, n;
do {cin>>n; sum+=n;}while (n!=0);
cout<<sum;
 
        
             
        
        
        
Answer:
The code is witten in Java and given in the explanation section.
Using a Scanner object we receive a the user's input and with the System.out.println we output the variable
Explanation:
import java.util.Scanner;
public class VariableOutput{
    public static void main (String [] args){
        Scanner input = new Scanner(System.in);
        System.out.println("Enter an Integer 15 or 40");
        int numObjects = input.nextInt();
        System.out.println("You entered the number "+numObjects);
    }
}