What tag pair is used to create the largest heading?
a.
```
```
b.
```
```
c.
```
```
d.
```
```
a.
```
```
You might also like to view...
You assign each anchor its own anchor name, using the ____ attribute.
A. name B. anchor C. link D. identify
Every Excel formula:
A. ?begins with an equal sign followed by an expression. B. ?begins with the appropriate operator for the formula. C. ?can only return numerical data as a result. D. ?can only return data in the form of text or dates.
A pointer constant is equivalent to a symbolic constant, in that the address stored in the pointer constant cannot be changed once it is set.
Answer the following statement true (T) or false (F)
Which of the following struct definitions is correct in C++?
A. struct studentType { int ID; }; B. struct studentType { string name; int ID; double gpa;} C. int struct studentType { ID; } D. struct studentType { int ID = 1; };