Match the PowerPoint features and types of presentations to their descriptions:

I. linear presentation
II. interactivity
III. non-linear presentation
IV. hyperlink
V. action button

A. presentation that progresses sequentially
B. ability to branch to other slides or files based on viewer's decision
C. presentation that progresses nonsequentially
D. ready-made icon
E. connection within a presentation that branches to another location

A, B, C, E, D

Computer Science & Information Technology

You might also like to view...

Two PCs have been assigned the following IP addresses, subnet mask, and default gateway: PC1 192.168.100.20 255.255.255.240 No DG PC2 192.168.100.10 255.255.255.240 192.168.100.1 Assuming all network devices including the switch the PCs are connected to, network cabling, and the default gateway are all functioning which of the following will occur when PC1 attempts to transfer a file to PC2?

A. PC1 will not be able to communicate with PC2 since PC2 is in a different subnet and PC1 does not have a default gateway configured. B. PC1 will perform an ARP broadcast to resolve PC2s IP address to MAC address since both PCs have the same subnet mask and communication will occur. C. PC1 and PC2 will not be able to communicate since both PCs must have the same default gateway. D. PC1 will send traffic to the default gateway at 192.168.100.1 since PC2 is in a different subnet and communication will occur

Computer Science & Information Technology

What is the output of the following code, if the user enters the sequence 10 17 35 7?

const int MAX = 4; int items[MAX]; for (int i = 0; i < MAX; i++) cin >> items[i]; items[2] += 2; for (int i = 0; i < MAX; i++) cout << items[i] << “ “; a) 12 19 37 9 b) 10 2 35 7 c) 10 17 37 7 d) 10 19 35 7

Computer Science & Information Technology