Case-Based Critical Thinking Questions
?
Case 3-3
Tim is creating a web page to display his poker club's set of rules. He has main categories and subcategories along with about a paragraph or more of explanation for each.
Tim wants to display the subcategories in capital letters but does not want them to appear more important than the main categories, so he small capital letters. Which style should he use??
A. ?text-transform
B. ?font-transform
C. ?font-variant
D. ?text-variant
Answer: C
You might also like to view...
Analyze the following functions;
``` public class Test1 { public static void main(String[] args) { System.out.println(f1(3)); System.out.println(f2(3, 0)); } public static int f1(int n) { if (n == 0) return 0; else { return n + f1(n - 1); } } public static int f2(int n, int result) { if (n == 0) return result; else return f2(n - 1, n + result); } } ``` a. f1 is tail recursion, but f2 is not b. f2 is tail recursion, but f1 is not c. f1 and f2 are both tail recursive d. Neither f1 nor f2 is tail recursive
Creating a high-level paragraph in a multi-level bulleted list is called ____________________ text.
Fill in the blank(s) with the appropriate word(s).