Write the Visual Basic statement that uses the Contains method to determine whether the strEmployeeCode variable contains the string "NC" (entered in uppercase). Assign the method's return value to a Boolean variable named blnIsNC.
What will be an ideal response?
blnIsNC = strEmployeeCode.ToUpper.Contains("NC")
Computer Science & Information Technology
You might also like to view...
According to The Gregg Reference Manual, Roman numeral page numbers should display in the bottom center of preliminary pages such as CONTENTS
Indicate whether the statement is true or false
Computer Science & Information Technology
What occurs when a print job is sent to a printer using the "FILE" option for its local port?
A. The job is automatically exported to a file in the user's profile directory. B. The job is spooled to a file, then transferred to the print server for printing. C. The user is prompted to supply a file name for the job. D. A named pipe file is used to communicate the job to the destination printer.
Computer Science & Information Technology