Software Development Fundamentals — Question 48
This question requires that you evaluate the underlined text to determine if it is correct.
Arguments are passed to console applications as a Hashtable object.
Select the correct answer if the underlined text does not make the statement correct. Select "No change is needed'' if the underlined text makes the statement correct.
Answer options
- A. No change is needed
- B. String Array
- C. StoredProcedureCollection
- D. Dictionary
Correct answer: B
Explanation
The statement is incorrect because arguments for console applications are not passed as a Hashtable object. Instead, they are passed as a String Array, making option B the correct choice. The other options do not represent the method used for passing arguments in this context.