Answer:
Explanation:
ok is this multiple choice if so plz provide that and ill answer again
Answer:
Numerals
Dimensions
Extension Lines
Arrowheads
Dimension Figures
Isometric Dimensioning
Orthographic Dimensioning
If a drawing is to be complete, so that the object represented by the drawing can be made as intended by the designer, it must tell two complete stories. It tells this with views, which describe the shape of the object, and with dimensions and notes, which give sizes and other information needed to make the object.
Therefore, your next step is to learn the basics of dimensioning. In that way, you will understand not only how to interpret a drawing to get the information you need, but also how to dimension your sketches so that they can be used to communicate size information to others.
Numerals
It may seem a bit basic, but a few exercises with the shapes of numbers come before dimensioning. The reason for such a review is simply that incorrectly or carelessly made numbers on a drawing or sketch can easily be misinterpreted by someone on the job. That can be costly.
Therefore, the study of numbers forms is justified.
The number forms presented here have been determined to be the most legible, and are used by industry nationwide. The United States standardized 1/8” vertical
Explanation:
Answer:
- import java.util.Scanner;
- import java.util.Random;
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner input = new Scanner(System.in);
- Random rand = new Random();
-
- System.out.print("Enter number of questions you wish to practice: ");
- int n = input.nextInt();
-
- int i = 1;
- while(i <= n){
- int num1 = 1 + rand.nextInt(10);
- int num2 = 1 + rand.nextInt(10);
- int answer = num1 * num2;
- System.out.print("Question " + i + ": " + num1 + " x " + num2 + " = ");
- int response = input.nextInt();
-
- if(response == answer){
- System.out.println("Correct answer!");
- }
- else{
- System.out.println("Wrong answer. It should be " + answer);
- }
- i++;
- }
- }
- }
Explanation:
Firstly, we import Scanner and Random classes (Line 1-2) as we need to get user input for number of questions and generate random number in each question.
Next, create a Scanner and Random object (Line 7-8). Prompt user to input number of question and get the input using the Scanner object (Line 10-11).
Next create a while loop and set the condition to loop for n number of times (based on number of questions) (Line 14). In the loop, use Random object nextInt method to generate two integers between 1 -10 (Line 15-16). Prompt user to input an answer using the Scanner object (Line 18-19). If the response is matched with answer print a correct message (Line 21-22) other wise inform user they write a wrong answer and show the correct answer (Line 24-25).