The ____ panel contains buttons for inserting various types of objects.

A. Insert
B. Property
C. Object
D. Attributes


Answer: A

Computer Science & Information Technology

You might also like to view...

On a traditional IBM mainframe, __________ interrupts are mutually exclusive.

a. SCV and program b. SCV and I/O c. SVC and external d. SVC and machine check

Computer Science & Information Technology

What is the value of myCount.count displayed?

``` public class Test { public static void main(String[] args) { Count myCount = new Count(); int times = 0; for (int i=0; i<100; i++) increment(myCount, times); System.out.println( "myCount.count = " + myCount.count); System.out.println("times = "+ times); } public static void increment(Count c, int times) { c.count++; times++; } } class Count { int count; Count(int c) { count = c; } Count() { count = 1; } }``` a. 101 b. 100 c. 99 d. 98

Computer Science & Information Technology

Symbols have a(n) ____________________ point that appears on the symbol when it is selected.

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

Computer Science & Information Technology

Transferring a file from the Internet to your computer is called _________

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

Computer Science & Information Technology