a.
2D graphics:
The shape that can be laid flat on a piece of paper or any mathematical plane is known as a 2D shape. Only horizontal and vertical directions are used in 2D that is it contains only length and width. It is used for printing and drawing application.
3D graphics:
3D graphics is a three dimensional representation of the geometrical data. It contains length, breadth and depth.
a.

Explanation of Solution
Determine whether designing the layout of magazines pages is application of 2D or 3D graphics:
- The magazine page has its length and breadth but the depth of the page is negligible.
- This means that the dimension of the page is limited to horizontal and vertical axes that are X and Y-axis.
- So, in case of designing the layout of the magazine page various shapes, sizes and colors can be designed, but as the paper does not contain any depth, it is a 2D graphics application.
Therefore, designing the layout of the magazine page is “application of 2D graphics”.
b.
2D graphics:
The shape that can be laid flat on a piece of paper or any mathematical plane is known as a 2D shape. Only horizontal and vertical directions are used in 2D that is it contains only length and width. It is used for printing and drawing application.
3D graphics:
3D graphics is a three dimensional representation of the geometrical data. It contains length, breadth and depth.
b.

Explanation of Solution
Determine whether drawing an image using Microsoft paint is application of 2D or 3D graphics:
- The dimension of Microsoft page is limited to horizontal and vertical axes that are X and Y-axes.
- So, In case of drawing an image using Microsoft paint, the position of the mouse pointer is located in between two coordinates only and so it is also an application of 2D graphics.
Therefore, drawing an image using Microsoft paint is “application of 2D graphics”.
c.
2D graphics:
The shape that can be laid flat on a piece of paper or any mathematical plane is known as a 2D shape. Only horizontal and vertical directions are used in 2D that is it contains only length and width. It is used for printing and drawing application.
3D graphics:
3D graphics is a three dimensional representation of the geometrical data. It contains length, breadth and depth.
c.

Explanation of Solution
Determine whether producing image from a virtual world for a video game is application of 2D or 3D graphics:
- The appearance of the screen of the video game on which images is displayed is 2D, but producing an image from a virtual world for a video game causes a series of images to view with subtle isometric variation to copy or mimic object as these objects are viewed in the real world.
- So, through interaction, user also experiences the depth of the object.
Therefore, producing image from a virtual world for a video game is “application of 3D graphics”.
Want to see more full solutions like this?
Chapter 10 Solutions
COMPUTER SCIENCE:OVERVIEW-TEXT
- 5) Eliminate the A-productions from the following CFG: Abc COIS-3050H-R-W01-2025WI-COMB Formal Languages & Automata BAabC C CaA | Bc | A 6) Convert the following CFG into CNF. S→ XYZ XaXbS | a |A YSbS | X | bb Z→ barrow_forwardNeed help answering these questions!1. Design a While loop that lets the user enter a number. The number should be multiplied by 10, and the result stored in a variable named product. The loop should iterate as long as the product contains a value less than 100. 2. Design a For loop that displays the following set of numbers: 0, 10, 20, 30, 40, 50 . . . 1000 3. Convert the While loop in the following code to a Do-While loop: Declare Integer x = 1 While x > 0 Display "Enter a number." Input x End Whilearrow_forwardNeed help with these:Design a While loop that lets the user enter a number. The number should be multiplied by 10, and the result stored in a variable named product. The loop should iterate as long as the product contains a value less than 100. 2. Design a For loop that displays the following set of numbers: 0, 10, 20, 30, 40, 50 . . . 1000 3. Convert the While loop in the following code to a Do-While loop: Declare Integer x = 1 While x > 0 Display "Enter a number." Input x End Whilearrow_forward
- Convert the While loop in the following code to a Do-While loop: Declare Integer x = 1 While x > 0 Display "Enter a number." Input x End Whilearrow_forwardPython - need help creating a python program that will sum the digits of a number entered by the user. For example if the user inputs the value 243 the program will output 9 because 2 + 4 + 3 = 9. The program should ask for a single integer from the user, it should then calculate the sum of all the digits of that number and output the result.arrow_forwardI need help with this in Python (with flowchart): Im creating a reverse guessing game. Then to choose a random number from 1 to 100 and the computer program will attempt to guess it, displaying the directions calculated or not. The guess will be displayed and the user will answer if it was correct or not. If correct, the game ends, if not then the computer asks if the guess was too high or too low. Finally inputting an answer and the computer generates a new guess within the proper range. Oh and to make sure the program doesnt guess outside of the ranges produced by the inputs of “too high” and “too low”. The program ending when the user guesses correctly or after the program takes 6 guesses. HELP ASAP!arrow_forward
- I need help with this in Python (with flowchart): Im creating a reverse guessing game. Then to choose a random number from 1 to 100 and the computer program will attempt to guess it, displaying the directions calculated or not. The guess will be displayed and the user will answer if it was correct or not. If correct, the game ends, if not then the computer asks if the guess was too high or too low. Finally inputting an answer and the computer generates a new guess within the proper range. Oh and to make sure the program doesnt guess outside of the ranges produced by the inputs of “too high” and “too low”. The program ending when the user guesses correctly or after the program takes 6 guesses. HELP ASAP!arrow_forwardNeed help finding errors in my pseudocode (Two)! Declare Boolean finished = False Declare Integer value, cube While NOT finished Display "Enter a value to be cubed." Input value; Set cube = value^3 Display value, " cubed is ", cube End While Next, I intended the following pseudocode to display the numbers 1 through 60, and then display the message "Time’s up!". Doesnt work and has error. Declare Integer counter = 1 Const Integer TIME_LIMIT = 60 While counter < TIME_LIMIT Display counter Set counter = counter + 1 End While Display "Time's up!"arrow_forwardHaving error in pseudcode; wanting to get five sets of two numbers each, calculate the sum of each set, and calculate the sum of all the numbers entered. Not functioning as intended and can't find the error.Code: // This program calculates the sum of five sets of two numbers. Declare Integer number, sum, total Declare Integer sets, numbers Constant Integer MAX_SETS = 5 Constant Integer MAX_NUMBERS = 2 Set sum = 0; Set total = 0; For sets = 1 To MAX_NUMBERS For numbers = 1 To MAX_SETS Display "Enter number ", numbers, " of set ", sets, "." Input number; Set sum = sum + number End For Display "The sum of set ", sets, " is ", sum "." Set total = total + sum Set sum = 0 End For Display "The total of all the sets is ", total, "."arrow_forward
- Need help converting loops!1. Convert the following While loop to a For loop: Declare Integer count = 0 While count < 50 Display "The count is ", count Set count = count + 1 End While _________________________________________________ 2. Convert the following For loop to a While loop: Declare Integer count For count = 1 To 50 Display count End Forarrow_forwardNeed help making this!1.Design a nested loop that displays 10 rows of # characters. There should be 15 # characters in each row. 2. Design a nested set of for loops that displays the following arrangements of ‘X’ characters X XX XXX XXXX XXXXX XXXXXXarrow_forwardI need help to resolve the case, thank youarrow_forward
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageSystems ArchitectureComputer ScienceISBN:9781305080195Author:Stephen D. BurdPublisher:Cengage LearningPrinciples of Information Systems (MindTap Course...Computer ScienceISBN:9781305971776Author:Ralph Stair, George ReynoldsPublisher:Cengage Learning
- COMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE LMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,


