The element used to create a horizontal line on a web page is:
a. h1
b. br
c. hr
d. div
c
You might also like to view...
Which of the following is the version of func that is called?
Suppose we have a class D derived from base class B, ``` class B { public: // other members void func(); // other members }; void B::func() { /* body */} class D: public B { public: // other members void func(); // other members }; void D::func() { /* body */} D dObj; ``` Make the following call using dObj as calling object: dObj.func(); a)B::func() b) D::func() c) Neither d) Both e) This is illegal. The base class func() is inherited in the derived class. For this reason, it is illegal to have a function defined in a base class and in a derived class having the same signature.
How many colors do you get with a one-bit image?
a. 256 b. 2 c. 1 d. 54
To add an email name and address to a mailing list, a user unsubscribes from it.
Answer the following statement true (T) or false (F)
____ programs can protect against someone accessing your computer via the Internet or a wireless connection.
A. Mirror B. Antispam C. Firewall D. Modem