Which of the following procedure declarations matches the call to the IsLetter procedure below?

```
Dim strText as String = txtInput.Text
Dim blnLetter as Boolean = IsLetter(strText)
```

a. Sub IsLetter(ByVal strInput as String) as Boolean
b. Sub IsLetter(ByVal blnResult as Boolean) as String
c. Function IsLetter(ByVal strInput as String) as Boolean
d. Function IsLetter(ByVal blnResult as Boolean) as String


c. Function IsLetter(ByVal strInput as String) as Boolean

Computer Science & Information Technology

You might also like to view...

MC Special attributes are created when a(n)______ .

a) method is called through an object reference. b) class is defined or an object is created. c) object is passed through a method parameter. d) All of the above.

Computer Science & Information Technology

The sh ip route command is entered on RouterC in the campus LAN shown in Figure 9-17. The LAN has been fully configured to run OSPF.

How many OSPF subnets are running on the network? Identify the connected C and OSPF O subnets.

Computer Science & Information Technology

Which of the following is an advantage of hardware firewalls?

A. not scalable compared to software firewalls B. not dependent on a conventional OS C. less expensive than software firewalls D. easy to patch

Computer Science & Information Technology

The recursion is said to be deep when _____.

A. there are few recursive calls B. its efficiency is quadratic C. its efficiency is exponential D. there are many recursive calls

Computer Science & Information Technology