An Access view used to format a form or report while viewing a sample of the data

A) Layout view B) Form view C) Design views


A

Computer Science & Information Technology

You might also like to view...

On a line chart, the y-axis is also known as the:

A) category axis. B) legend axis. C) base axis. D) value axis.

Computer Science & Information Technology

The first argument of the GETPIVOTDATA function is ____.

A. the field where the data is extracted from B. the PivotTable name C. the PivotChart name D. value that describes the data you want to retrieve

Computer Science & Information Technology

Which of the following commands can a network technician use to check whether the DNS server for a given domain is reachable?

A. nmap B. nbtstat C. dig D. arp

Computer Science & Information Technology

How many lines will be output if the following records are input?

Given the following pseudocode: ``` Start FINAL-ACCUM = 0 NAME-ACCUM = 0 Read NAME, AMT SAVE-NAME = NAME DOWHILE not EOF IF NAME ? SAVE-NAME THEN Write NAME-ACCUM FINAL-ACCUM = FINAL-ACCUM + NAME-ACCUM NAME-ACCUM = 0 (ELSE) ENDIF Write NAME, AMT NAME-ACCUM = NAME-ACCUM + AMT Read NAME, AMT ENDDO Write FINAL-ACCUM Stop ``` John 20.00 John 30.00 Mary 10.00 Mary 6.00 Sue 8.00 Sue 5.00 a) 7 b) 9 c) 10 d) 11

Computer Science & Information Technology