Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question 11 Consider the following algorithm from your textbook, what is true about this appeoach? function sierpinski) initialize_the_system(); p = find_initial_point(); for (some_number_of_points) { q
Question 11 Consider the following algorithm from your textbook, what is true about this appeoach? function sierpinski) initialize_the_system(); p = find_initial_point(); for (some_number_of_points) { q = generate_a_point(); display_the_point(q); p = q; cleanup(); The strategy used in this algorithm is known as immediate mode graphics The strategy used in this algorithm is known as retained mode graphics There is memory of the geometric data. Question 12 The simplest geometric primitive is a _______ in space, point circle triangle segment Question 13 In JavaScript, an array is not just a collection of values as in it is an object with methods and properties. True False Question 14 In JavaScript, which of the following generate a random number between 10 and 20, inclusive? Math.floor(Math.random(* 10)+10 Math.floor(Math.random(*11) Math.floor(Math.random(* 11)+10 Math.floor(Math.random() * 10) Question 15 Which set of functions that API must provide for an interactive application ? o control functions input functions query function transformation functions
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started