Case-Based Critical Thinking Questions
Case 1: Frames Unlimited
?
Frames Unlimited is a wholesale picture and poster frame business. Frame data are stored in sequential access files that contain four columns: item number, item name, size, and price.
Which of the following is the correct declaration statement for a procedure-level variable namedinInventorythat will be used to read data from a sequential access file?

A. Dim inInventory As IO.StreamReader
B. Dim variable As InInventory
C. Dim ReadFrom As inInventory
D. Dim outFile As InInventory


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following sections of code will calculate the monthly payment for a $150,000 house with a 30 year mortgage at an annual rate of 5.5%, and assign the result to dblMPay?

a. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate / 12, intYears * 12, -dblLoanAmt) ``` b. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate, intYears, -dblLoanAmt) ``` c. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate / 12, intYears, -dblLoanAmt) ``` d. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate, intYears * 12, -dblLoanAmt) ```

Computer Science & Information Technology

A set of commands and instructions that can be grouped as a single command to accomplish a task automatically

a. Comment b. Macro c. Procedure

Computer Science & Information Technology

What advantage does using a circular collider give us over a box or polygon collider?

What will be an ideal response?

Computer Science & Information Technology

In the Restrict Formatting and Editing dialog box, you can lock a form by selecting Filling in forms in the ____ section.

A. Tracked changes B. Content Control Properties C. Allow only this type of editing in the document D. Formatting Restrictions

Computer Science & Information Technology