Assume that the data for salary is entered with both a dollar symbol and a space. Which of the following instructions will remove the dollar symbol?

A. salary.TrimStart("$")
B. salary.TrimLeft("$")
C. salary.TrimEnd("$")
D. salary.TrimRight("$")


Answer: A

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` public class Test { public static void main(String[] args) { java.math.BigInteger x = new java.math.BigInteger("3"); java.math.BigInteger y = new java.math.BigInteger("7"); x.add(y); System.out.println(x); } }``` a. 3 b. 4 c. 10 d. 11

Computer Science & Information Technology

The symbol <> is the Access comparison operator for ________

A) less than B) greater than C) equal to D) is not equal to

Computer Science & Information Technology

Critical Thinking QuestionsCase H-1Sam has created an image of a clock for his high school Web page project. He wants to save the file out in a way that it can be used on the Web site. What is the export format of choice for exporting graphics for the Web?

A. JPEG B. PDF C. SWF D. GIF

Computer Science & Information Technology

Linked lists provide random access methods.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology