One way to access Word commands is to use:

A) files and folders. B) the Title bar. C) buttons and icons. D) the internet.


C

Computer Science & Information Technology

You might also like to view...

If you send the right message to the wrong object, Alice will automatically resend the message to the right object.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

What is the color of the polygon?

Look at the following applet code: 1 import javax.swing.*; 2 import java.awt.*; 3 public class GraphicsTest extends JApplet 4 { 5 public void init() 6 { 7 getContentPane().setBackground(Color.WHITE); 8 } 9 public void paint(Graphics g) 10 { 11 int[] xCoords = {20, 20, 60, 100, 140, 140, 100, 60}; 12 int[] ycoords = {20, 100, 140, 140, 100, 60, 20, 20}; 13 super.paint(g); 14 g.setColor(Color.YELLOW); 15 g.fillPolygon(xCoords, yCoords, 8); 16 g.setColor(color.BLACK); 17 g.setFont(new Font("SansSerif", Font.BOLD, 35)); 18 g.drawString("SLOW", 35, 95); 19 } 20 } A) White B) Yellow C) Black D) None of the above

Computer Science & Information Technology

You are asked to design a new processor with a 64?bit word. Taking advantage of advances in technology, you decide that you can allocate an extra 5 bits to each word. That is, data words in registers and memory will occupy 69 bits. The additional 5 bits will be used to describe the data. How might you allocate these additional bits (i.e., what functions would you assign to them) in the light of what you have read in the previous chapters?

What will be an ideal response?

Computer Science & Information Technology

Shortly after its introduction, the Unix software was rewritten in the popular C++ programming language.?

Answer the following statement true (T) or false (F)

Computer Science & Information Technology