Quiz 3 Prep answers

Office 1:

  1. A(n) ___Action___ button is a built-in 3-D button that can perform tasks such as displaying the next slide or providing help. PPT270
  2. PowerPoint can produce slides based on an outline created in __Microsoft Word, a word processing program, or a web page_.(name all of them)PPT165
  3. If the Picture Tools and Format tabs are active and a graphic is selected, how do you deselect it? PPT102 click outside the clip
  4. What keyboard sequence allows you to minimize or maximize the Ribbon? PPT9 CTRL +F1
  5. When you ungroup a clip art picture in PowerPoint, it becomes a(n) _drawing object___. PPT194

Office 2:

  1. If the Field Size for a field whose data type is Number is set to _byte____, the field size will be an integer value in the range of 0 to 255. AC 46
  2. To change the caption for a field in a query, click the field in the design grid, click the _Property Sheet___ button on the Design tab, click the Caption box, and enter the new caption. AC 116
  3. A(n) _database management system_ is a software tool that can be used to create a database; add, change, and delete data in the database; sort and retrieve data; and create forms and reports using the data in the database. AC 2
  4. A(n) ___criterion____ is a condition that the records to be included in a query must satisfy.AC 81
  5. A(n) ___foreign key____ is a field in one table whose values are required to match a primary key in another table. AC 185

Office 3:

  1. In addition to the Ribbon and the shortcut menu, where can the Bullets button be found? PPT 343 on the mini toolbar
  2. The icon that displays a sound file automatically displays ____________________ on a slide. PPT 357 C
    a. in the bottom-right corner c. in the middle
    b. in the middle-top section d. in the bottom-left corner
  3. Where do slide timings display? PPT 362 A
    a. lower-left corner in Slide Sorter view
    b. lower-left corner in Normal view
    c. top-right corner of Slide Show view
    d. top-right corner in Slide Sorter view
  4. Default line spacing in PowerPoint is ____________________. PPT 401 0.5
  5. Use the _____________________ to create a custom motion path. PPT 427 mouse

Dreamweaver:

  1. When creating Flash buttons in Dreamweaver, if the text on your Flash buttons appears too large, you can __ choose a smaller font size or a different font_. 9-7
  2. It is a good idea to limit the number of _complex___ hotspots in an image because the code can become too lengthy for the page to download in a reasonable length of time. 9-21
  3. You can control the absolute positioning of layers by setting several primary attributes, __four__ of which are available in the Property inspector. 8-8
  4. __External___ style sheets can be applied to multiple pages, and are therefore great tools to help ensure formatting consistency across all pages of a Web site. 7-4
  5. ____Inline___ styles refer to a specific instance of a tag, rather than a global tag style on a page. 7-4

Flash 1:

  1. Macromedia Flash will automatically convert cyan, magenta, yellow, and black (CMYK) files to _RGB___ files.7-6
  2. If you want your traced image to look more abstract, you should use _less_ detail.7-16
  3. When creating target paths with dot syntax, _root refers to the main timeline. 9-13
  4. Creating a single animated graphic symbol from a multiple-frame multiple-layer animation removes all of the associated keyframes, layers, and tweening of the animation from your __timeline__. 8-5
  5. With Script Assist turned off, ActionScript code is built by selecting actions listed in folder categories in the __Toolbox___ pane.9-5

Alice 2.0:

  1. __Initialization_ is an instruction that sets the first value of the control variable. 164
  2. Local area networks, the laser printer, the mouse, and even object-oriented programming were developed or refined at ____Xerox PARC__. 187
  3. There must be a(n) __condition_to determine which path the computer will follow each time the selection sequence is being executed. 139
  4. _Multiple_ branching routines can always be rewritten as a series of binary branching routines. 147
  5. A Boolean variable stores a property that can be _true or false. 197

Alice 2.0 Advanced

  1. To send messages to objects, you must learn how to define _instance_ methods.313
  2. If you wish to pass an argument to a method, that method must contain a(n) __parameter__ to store the argument.294
  3. A reference type variable whose value is __null__ does not refer to any object. 267
  4. For every program, Java defines an object named __System.out__ through which textual values (letters, digits, punctuation, and so on) can be displayed on the screen.232
  5. A parameter’s scope starts at the beginning of its method, and ends at_its method's closing curly brace _. 325

 

HTML:

  1. Which of the following controls creates a list item? 293 D
    a. checkbox c. list
    b. radio d. both A and B
  2. There are two primary methods to send the form to the server to be processed: ____ 299 B
    a. send and put c. get and put
    b. get and post d. CGI and HTML
  3. With a checkbox control, the default can be changed so a particular check box is preselected as the default, by using the _________________________ value within the <input> tag. 294 checked
  4. If a given search value is not found, the indexOf() method returns a value of _______________. 379 -1
  5. True or False: The parentheses after the Date() object mean the Date() object can retrieve a specified date and time or the current system date and time. 378 TRUE

A+ PC Repair

  1. The _Windows indexer_ is responsible for maintaining an index of files and folders on a hard drive to speed up Windows searches. 717
  2. The _Driver Query___ tool can be used to direct information about drivers to a file, including information about digital signatures.762
  3. The __Security log__ records events based on audit policies, which an administrator sets to monitor user activity such as successful or unsuccessful attempts to access a file or log on to the system.698
  4. User mode errors that don’t produce a STOP error can appear as a(n) _bubble__ in the notification area.752
  5. If you think you know which Windows system file is corrupted or missing, you can use the __Recovery Console_ to copy a new set of system files from the Windows setup CD to the hard drive. 798

Java Programming

  1. A(n) ____________ is convenient when assigning values to two-dimensional arrays or when keeping track of a table of numbers.331
  2. The _getSystemClipboard()__ method returns the most recent value of the system clipboard provided by the native platform.400
  3. When using a(n) __decrement operator_ in the third parameter of a for loop, the stop value in the second parameter must be less than the initial value in the first parameter in order to avoid an infinite loop.327
  4. Java supports a(n) ___valueOf() method___ to create a String representation of each primitive data type.348
  5. When using several Frames in an application, use the __setVisible() method_ to decide exactly when or what event will make any given Frame visible.413

Visual Basic

  1. When using the _Do Until_ loop, the loop instructions are processed only if the condition evaluates to false. 345
  2. If the txtName text box contains the string, Jill Light, _D_ will return Light. 491
    a. Left(txtName.Text, 4)
    b. Left(txtName.Text, 5)
    c. Right(txtName.Text, 6, 5)
    d. Right(txtName.Text, 5)
  3. Assigning a beginning value to a variable is referred to as __initializing__. 354
  4. When you use the Close button (Control menu box in Windows 3.1) to close a form, the form's _Unload__ event occurs. 401
  5. If a Code window belongs to a control array, Index as _Integer_ will appear inside the parentheses that follow the name of the event procedure. 380

Game Flash:

Your quiz will be a game creation so there are no quiz prep questions.