____________________ and ____________________ methods are used to align characters in a String.
____________________ and ____________________ methods are used to align characters in a String. Correct Answer PadLeft, PadRight
You can use Visual Basic’s PadLeft and PadRight methods to align the characters in a string. The methods do this by inserting (padding) the string with zero or more characters until the string is a specifi ed length; each method then returns the padded string. The syntax is as follows: string.PadLeft(totalChars) string.PadRight(totalChars)