Answer:
The answer is "except IOError:"
Explanation:
It is part of the exception handling, that stands for input/ output operation fails, this exception aeries when we attempting to access an anti-existent file, in the program so, it will give the program related errors.
- This type of error is handled in the try block, it also allows you to prepare the deal with the exceptional block.  
 - It also helps you to hide the bugs by using code, if you handle an unexpected error.
 
 
        
             
        
        
        
Answer:
The answer is a phablet.
Explanation:
A phablet is a class of smartphones with an intermediate size between a smartphone and a tablet. If the customer follows the recommendation, then he could still use this device for phone calls and work and not struggle anymore with the small print of the typical smartphone. 
 
        
                    
             
        
        
        
1. go back to the feedback you submitted
2.Locate the order, and then click remove 
3.select a reason for the removal and click to remove the feedback button.
(But why would you write a rude comment in the first place to begin with?)
        
             
        
        
        
Answer:
The output is: Your cost is  100
Explanation:
Given
The above code snippet
and

Required
Determine the output of the code
if cost < 70 or cost > 150
The above condition checks if cost is less than 70 or cost is greater than 150
This condition is false because 100 is neither less than 70 nor is it greater than 150
So, the else statement will be executed.
discount = cost
Which means
discount = 100
So, the print instruction will print: Your cost is  100