Answer:
Adobe illustrator is classified as a vector editing software.
Explanation:
- It is one of the most popular vector editing software used my many designers and creators to create things form beautiful looking web and mobile graphics to icons, logos, book illustration,billboards etc.
- It has all the necessary tools to turn normal shapes and colors to masticated logos icons and graphics.
- You can create free hand drawings or trace and recolor graphics and turn them into your art.
Answer:
Keyboard, mouse and printer.
Explanation:
They all are input devices and are commonly used.
The Master Slide is the design template or design theme used for the slides within your presentation. There are three different master slides—notes master, handout master, and the most common, the slide master. All are located under View > Master.
A communication medium that carries a large amount of data at a fast speed is called broadband. Broadband can transmit multiple signals at the same time. The term gained popularity during the 1990s for the marketing of internet. The term is used in radio, television and internet terminology. Though there is slight difference in the definition in each category, the term primarily stands for the ability of a medium to send and receive a lot of data at a fast speed.
Answer:
See explaination
Explanation:
CREATE TABLE CATEGORY
(
cid int NOT NULL,
description varchar2(1000),
PRIMARY KEY (cid)
);
CREATE TABLE PRODUCT
(
pid int NOT NULL,
description varchar2(1000),
cid int,
price int,
p_size varchar2(1),
CONSTRAINT chk_price CHECK (price>0),
CONSTRAINT chk_size CHECK (p_size in ('S','M','L')),
CONSTRAINT fk_cid FOREIGN KEY (cid) REFERENCES CATEGORY(cid)
);