Consider the following code:
What change should be made to ensure that it correctly displays the value of name in all uppercase letters?
Jaime needs to write a script to remove all the non-digit characters from a phone number so that all that remains are the numbers She knows that she will need to use a regular expression to search for non-digit characters and can use a method to remove all the non-digit characters. Which code should she use?
A)
B)
C)
D)
Joseph is designing a Web form for new patient enrollment in a doctor's office He wants to ensure that users enter valid information on the form He also wants to make sure that hackers cannot submit malicious code to gain access to information about other patients. What technique should he use?
Which of the following comparison statement will return true?
A)
X=10;
Y=11;
y--;
x==y
B)
X=10;
Y=11;
Y++;
x==y’
C)
X=11;
Y=10;
y--;
x==y;
D)
X=11;
Y=10;
y-= 1;
x==y
Consider the following code:
Which of the following is true based on the above code?