Answer:
It's a compact way of doing an if-else statement.
General Format is
<<em>condition</em>> ? <if condition is true> : <else>;
Example:
I could rewrite:
   if(a==1) temp = 1;
   else     temp = 999;
as
   temp = (a==1) ? 1 : 999;
 
        
             
        
        
        
Answer:
I want to answer the 1st question. It asks, “Will we treat people unfairly for crimes they haven’t committed?” Well, of course, that’s a 100% chance. But, some people forget that people treat people unfairly for crimes they haven’t committed. Some people stay in jail for up to 35 years and are then released because they are innocent. Yes, computers will make mistakes, but the probability is much, much smaller than a human.
Explanation:
 
        
             
        
        
        
Answer:
Hi , so your answer is that a good web page design is to make it easy to use and meaningful and able to help people . 
Explanation:
Really hope i helped , have a nice day :) 
 
        
                    
             
        
        
        
Answer:
The HTML <h1> to <h6> tag is used to define headings in an HTML document. <h1> defines largest heading and <h6> defines smallest heading.
Explanation: