COGNITIVE ASSESSMENT
If you follow the advice of your instructor and use CBT to learn about programming languages, how would you learn?

A. You would access content by teachers from a web site designed to reinforce what you already know about programming.
B. You would answer a series of questions from your instructor and then, based on your answers, your instructor would assign books to read and programs to review.
C. Typically you would employ self-paced instruction to use and complete exercises presented on your computer.
D. You would use simulations.


Answer: C

Computer Science & Information Technology

You might also like to view...

Estimate the time required to crack a 56-bit DES key by a brute-force attack using a 500 MIPS (million instruction per second) workstation, assuming that the inner loop for a brute-force attack program involves around 10 instructions per key value, plus the time to encrypt an 8-byte plaintext

What will be an ideal response?

Computer Science & Information Technology

Analyze the following code:

``` import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.RadioButton; import javafx.scene.control.ToggleGroup; import javafx.scene.layout.FlowPane; import javafx.scene.layout.Pane; import javafx.stage.Stage; public class Test extends Application { @Override // Override the start method in the Application class public void start(Stage primaryStage) { Pane pane = new FlowPane(); ToggleGroup group = new ToggleGroup(); RadioButton rb1 = new RadioButton("Java"); RadioButton rb2 = new RadioButton("C++"); pane.getChildren().addAll(rb1, rb2); Scene scene = new Scene(pane, 200, 250); primaryStage.setTitle("Test"); // Set the stage title primaryStage.setScene(scene); // Place the scene in the stage primaryStage.show(); // Display the stage } /** * The main method is only needed for the IDE with limited JavaFX * support. Not needed for running from the command line. */ public static void main(String[] args) { launch(args); } } ``` a. The program displays two radio buttons. The two radio buttons are grouped. b. The program displays one radio button with text Java. c. The program displays two radio buttons. The two radio buttons are not grouped. d. The program displays one radio button with text C++.

Computer Science & Information Technology

Given the following list:

90 8 7 56 123 235 9 1 653 trace the execution for: merge sort

Computer Science & Information Technology

_________________________ is the default option that Excel uses to fill an area.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology