The programmer solves the problems of a user by expressing an algorithm in a programming language to make a program that can run on a computer.
 
        
             
        
        
        
Statement two and three is correct. 
Statement 1 is incorrect. A relative reference changes when a formula is copied to another cell while Absolute references remain constant. However, it is safe to say that an absolute address can be preceded by a $ sign before both the row and the column values. It is designated by the addition of a dollar sign either before the column reference, the row reference, or both. Statement C is also correct. A mixed reference is a combination of relative and absolute reference and the formula (= A1 + $B$2) is an example of a mixed cell reference.
 
        
                    
             
        
        
        
// This command takes input from the user.
Scanner input = new Scanner(System.in);
int response= input.nextInt();
// Making the variables required
int noCount =0 ;
int yesCount =0;
// Checking the response if it is 1 or 2 and reporting accordingly
if(response == 1 || response ==2){
  yesCount+=1;
  System.out.println("YES WAS RECORDED");
} 
// Checking if the input is 3 or 4 then printing the required lines
else if (response == 3 || response ==4){
 noCount+=1;
  System.out.println("NO WAS RECORDED");
} 
// if the input is not valid than printing INVALID
else{
System.out.println("INVALID");
}
  
  
   
 
        
             
        
        
        
<span>D. Page Layout  i hope this helps </span>
        
                    
             
        
        
        
Answer:
function validateForm(event)
{
event.preventDefault();
var phoneNumber = form.phoneNumber.value;
var userName = form.userName.value;
if(phoneNumber.length!=10)
console.log("Phone Number is Invalid");
if(userName.length<11)
console.log("User Name is Invalid");
}