Use the ________ file type to save a document in HTML format, with some elements saved in a separate folder

Fill in the blank(s) with correct word


WebPage

Computer Science & Information Technology

You might also like to view...

Given the following classes and code, what is the output of the last statement shown?

class Pet { public: virtual void print(); string name; private: }; class Dog: public Pet { public: void print(); string breed; }; void Pet::print() { cout << "My name is " << name; } void Dog::print() { Pet::print(); cout << ", and my breed is a "<< breed << endl; } Pet pPtr; Dog dPtr; dPtr->name= "Rover"; dPtr->breed="Weiner"; pPtr= dPtr; pPtr->print(); a. My name is Rover, and my breed is a Weiner b. My name is Rover c. , and my breed is a Weiner d. nothing

Computer Science & Information Technology

A situation in which a runnable process is overlooked indefinitely by the scheduler, although it is able to proceed, is _________

A) mutual exclusion B) deadlock C) starvation D) livelock

Computer Science & Information Technology

If you want a set of actions to run every time a database is opened, then you can create an AutoKeys macro

Indicate whether the statement is true or false

Computer Science & Information Technology

Match the scripting term to the description.

A. “sample text” B. “Press any key” C. 9 D. 1424 E. $X F. %TEMP% G. #Start     H. Loop

Computer Science & Information Technology