The verbs compare, differentiate,analyze, classify, distinguish, categorize, and prioritize are used at the ________ level of Bloom's Taxonomy
a. Comprehension
b. Application
c. Analysis
d. Syntheses
C.Analysis indicates students can examine and analyze the information to infer additional knowledge.
You might also like to view...
Using the Internet to get small donations from many people to start a business is called ________
A) crowdfunding B) kickstarting C) crowdsourcing D) collaborating
Consider the following function:
void reverse(char * string1, const char * string2) { int stringsize = sizeof(string1)/sizeof(char); *(string1 + stringsize – 1) = '\0'; string1 = string1 + stringsize – 2; for (; *string2 != '\0'; --string1, ++string2) { *string1 = *string2; } } What method does the function use to refer to array elements? a) array/subscript notation b) array/offset notation c) pointer/subscript notation d) pointer/offset notation