COMP 230 Final Exam

$0.00

Category: FREE DOWNLOAD Tag: comp 230

Description

COMP 230 Final Exam – Free Download

COMP 230 Final Exam Page 1

  1. (TCO 2) What is an example of a string constant?
  2. (TCO 2) What is the assignment operator?
  3. (TCO 2) The symbols used to describe the logic of a program are known as _____.
  4. (TCO 2) If a variable holds the value 12345, what is its data type?
  5. (TCO 3) The logical AND operator can replace ____ in how it behaves.
  6. (TCO 3) Which pseudo code produces the same result as the following? if customer Age > 65 OR customer Age = 65 then discount = 0.10 else discount = 0 end if
  7. (TCO 3) What logic operator could be used to replace the nested selection structure in this pseudo code?
  8. (TCO 3) In order to have the most efficient program, which question should be asked first when working with an AND decision?
  9. (TCO 3) If you are asked to write a program that prints a list of books that have fewer than 30 pages and more than 100 pages, what type of decision structure would you use?
  10. (TCO 3) A ______ represents only one of two states, usually expressed as true or false.
  11. (TCO 4) How many times will the following loop execute?
  12. (TCO 4) Array subscripts are always ____.
  13. (TCO 4) When a loop-control variable is not altered during loop execution, a(n) _____ loop may result.
  14. (TCO 4) A countdown loop operates by the loop-control variable _____.
  15. (TCO 4) All of the elements in an array have the same ____.
COMP 230 Final Exam Page 2
  1. (TCO 1) Which of the following Windows commands will shut down and restart the computer FileServer in 2 minutes?
  2. (TCO 1) The NETSH command that will set the IP address of the interface name NIC to a DHCP-supplied IP address is _____.
  3. (TCO 1) From a 32-bit Windows CLI, the command used to open a new CLI window is __
  4. (TCO 1) Which one of the following Windows NET commands will allow other computers to access the C:\Data directory under the share name User Data?
  5. (TCO 5) What variable scope is preferable?
  6. (TCO 5) When writing named constant identifiers, it is a common convention to ______.
  7. (TCO 5) What of the following would most likely be a named constant?
  8. (TCO 6) The following command opens a text file in VBScript. Set file = fso.OpenTextFile(“C:\Data\CustData.txt”, ?, ??, ???) To open a file for writing, the value of ? must be_
  9. (TCO 6) Once you have a file selected with file = fso.GetFile(“C:\DataFile.dat”), what command will allow you to access the file attributes?
  10. (TCO 6) The following command opens a text file in VBScript. Set file = fso.OpenTextFile(“C:\Data\CustData.txt”, ?, ?? _____.
  11. (TCO 6) The following command opens a text file in VBScript. Set file = fso.OpenTextFile(“C:\Data\CustData.txt”, ?, ??, ???) To open a file for reading, the value of ? must be _____.
  12.  (TCO 7) The general syntax of an SQL select statement is _____.
  13. (TCO 7) The questions that cause the database software to extract the appropriate records from a table and specify the fields to be viewed are called ____.
  14. (TCO 7) What is the name for a column that uniquely identifies a record?
  15. (TCO 7) What is the name for a unique key that is constructed from multiple columns?

COMP 230 Page 3

  1. (TCO 1)Write the Windows CLI commands that will clear the screen; turn off command echo and display the current IP address, subnet mask, and default gateway.
  2. (TCO 1) Write the Windows CLI NET commands that will turn the Spooler service OFF and then ON.
  3. (TCO 2) Write the VBScript code lines that define a constant TAXRATE that is 25%, a variable base Pay that is $1000, and a variable bonus Pay that is $500. Calculate the net pay, and assign that value to net Pay. Then, calculate the taxes, and assign that value to tax Withheld.
  4. (TCO 3) Given the variable age, write the VBScript code that will decide whether the age is of a teenager or is not of a teenager. Display the message “The value of age is a Teenager” or “The value of age is NOT a Teenager,” depending on the value of the age.

COMP 230 Page 4

  1. (TCO 4) Write the VBScript code that initializes all the variables in the num Array(100) to the value numArray(0)=1, numArray(1)=2,&#-123;,numArray(100)=101.
  2. (TCO 5) Write a VBScript procedure (or subroutine) called Swap(ByRef num1, comp 230 final exam ByRef num2) that accepts two number variables by reference and exchanges the two values whereby num1 is assigned the original value of num2, and num2 is assigned the original value of num1.
  3. (TCO 6) Write the VBScript code that defines the Scripting. File System Object and the file C:\Data\DataFile.txt for writing.
  4. (TCO 7) Assuming that you are connected to a database called Computers.mdb with the fields Computer, Hostname, Room_Num, CPU_Type, Num_CPUs, Bit_Size, OS_Type, Memory, and HDD_Size, write the SQL Query String sqlStr such that the fields Computer, Hostname, and CPU_Type will be displayed for all the records that indicate that CPU_Type is “AMD” and the Bit_Size is 64. The returned records should be sorted by Hostname.comp 230 final exam