The ____ area configures rounded corners on rectangles.

a. Stroke
b. Style
c. Rectangle Options
d. Rounded Corners


c. Rectangle Options

Computer Science & Information Technology

You might also like to view...

What is the right code for the boolean empty() method?

A queue based on a linked list uses the following code ``` class Node { String element; Node next; Node (String el, Node n) { element = el; next = n; } } Node front = null, rear = null; ``` A) return front == null; B) if (rear == front) return true; else return false; C) if (front == null) throw new RuntimeException("Empty"); else return false; return true; D) return front == rear;

Computer Science & Information Technology

In most cases, it is advisable to enforce referential integrity in databases with related tables

Indicate whether the statement is true or false

Computer Science & Information Technology

The location within which a defined name is recognized without qualification is referred to as the ________

A) table array B) formula C) scope D) cell range

Computer Science & Information Technology

Which command is used to find out which network ports are open on the system?

A. ping B. traceroute C. telnet D. netstat

Computer Science & Information Technology