What property should you add to the
A. float
B. align
C. block
D. right
Answer: A
Computer Science & Information Technology
You might also like to view...
Which of the following is NOT an alignment option in the Control Alignment group?
A) Right B) To Grid C) Left D) To Margin
Computer Science & Information Technology
How many public members does an object of class D have?
Consider the class inheritance. ``` class B { public: B(); B(int nn); void f(); void g(); private: int n; }; class D: public B { public: D(int nn, double dd); void h(); private: double d; }; ``` a) 0 b) 1 c) 2 d) 3 e) 4 f) 5
Computer Science & Information Technology