Answer:
E.
a medium dashed line
Explanation:
I always use medium hehe so I think that'll work.
 
        
                    
             
        
        
        
Answer:
def validateCreditCard(x):
       if type(x)==str and len(x) == 8:
            print("Valid credit card number")
       else:
           print("Invalid credit card number")
validateCreditCard("43589795")
Explanation:
Run the code on your text editor(vs code, sublime, pycharm ) you will get your desired response. If your input is not of type string and not up to 8 digit you will get the response "invalid credit card number" but if it is of type string and up to 8 digit you will get "Valid credit card number".
 But remember python works with indentation so when you are transferring this code to your text editor it will run properly well. 
I defined the code using the conventional pattern "def"
After defining the function you create a brackets (x) to accommodate your argument x and end it with a semi colon.  
Then i use "if" statement to make sure only string argument and 8 digit value will be accepted to print a "valid credit card". if your argument does not pass the if statement condition it will print out the else statement condition which is "Invalid credit card number" 
Finally, you have to call your function and test various values. 
      
     
 
        
             
        
        
        
Answer:
(b) (int)(Math.random() * 101) 
Explanation:
Given
 --- minimum
 --- minimum
 --- maximum
 --- maximum
Required
Java expression to generate random integer between the above interval
The syntax to do this is:
(int)(Math.random((max - min) + 1) + min)
Substitute the values of max and min
(int)(Math.random((100 - 0) + 1) + 0)
Simplify the expression
(int)(Math.random(100 + 1) + 0)
(int)(Math.random(101) + 0)
(int)(Math.random(101))
Hence, the right option is:
(b) (int)(Math.random() * 101) 
 
        
             
        
        
        
A search stagey is useful because you can make complicated searches easily and also get reliable data.