10th Grade Informatics Sample Test

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Which statement below describes the advantage of storing information on digital devices?

  • The amount of information stored depends entirely on the device's size.
  • Data is absolutely secure.
  • A large amount of data can be stored. (correct)
  • Data cannot be deleted.

Which of the following equalities is correct regarding information storage units?

  • 1TB = 1024 GB (correct)
  • 1GB = 1024 KB
  • 1MB = 1024 B
  • 1B = 1024 bit

Which statement below is FALSE?

  • Computers can work continuously.
  • Computers work according to programs.
  • Computers work automatically.
  • Computers can perceive smell. (correct)

Which is an example of a non-smart device?

<p>Handheld calculator used in high school graduation exams. (B)</p> Signup and view all the answers

Which option refers to a built-in application on a smartphone?

<p>Web browser. (A)</p> Signup and view all the answers

What is the best way to find a game application that is not yet on a smartphone?

<p>Search in the app store on that phone. (C)</p> Signup and view all the answers

Which statement correctly describes the scope of the Internet?

<p>Global. (C)</p> Signup and view all the answers

The Internet of Things (IoT) is best illustrated in which system below?

<p>Automated toll collection system. (B)</p> Signup and view all the answers

Which behavior constitutes cyberbullying?

<p>Posting threatening information on social media. (B)</p> Signup and view all the answers

What is a characteristic of open educational resources on the Internet?

<p>Free. (D)</p> Signup and view all the answers

Which data type cannot be translated using Google Translate on a computer?

<p>Video. (A)</p> Signup and view all the answers

Which activity below violates ethics, laws, and culture in the digital environment?

<p>Posting someone's personal information without permission. (B)</p> Signup and view all the answers

Which case below violates Intellectual Property Law regarding the use of a published digital work?

<p>Replacing the author's name with a personal or organizational name. (D)</p> Signup and view all the answers

Which behavior below does not violate copyright?

<p>An author writes a book for commercial purposes using a photographer's photo, having obtained permission and agreement. (C)</p> Signup and view all the answers

Which of the following is an assignment operation in Python?

<p>a = b + 5 (D)</p> Signup and view all the answers

Given the following Python code snippet:

n = int(input("Enter an integer: "))
print(n/2)

What is the output if the input data is 5?

<p>2.5 (C)</p> Signup and view all the answers

Which statement should be used to input a number n until a positive integer is received?

<p>Loop statement. (C)</p> Signup and view all the answers

Among the statements about the purpose of using subprograms (functions/procedures) in programming, which statement is incorrect?

<p>Helps the program run faster. (C)</p> Signup and view all the answers

In Python, components of a function can be mandatory or optional. Which option correctly identifies a mandatory component required in a function definition?

<p>Function name. (B)</p> Signup and view all the answers

Given the following Python program:

def tinh(a):
    b = a**a
    return b
print(tinh(3))

Which option correctly states the result when running the program?

<p>27 (B)</p> Signup and view all the answers

Which statement below is used to initialize a list in Python?

<p><code>lst = [1,2,3,5]</code> (C)</p> Signup and view all the answers

Given the following Python code snippet:

1 n = int(input("Enter an integer n: "))
2 if n > 0:
3     print("n is a positive integer")
4 else:
5     print("n is not a positive integer")

Which line in the snippet above has an indentation error?

<p>Line 3. (A)</p> Signup and view all the answers

Given two lists X and Y. Which option below appends Y to the end of X?

<p><code>X+Y</code> (A)</p> Signup and view all the answers

Which skill/quality below is most essential for a graphic designer on a computer?

<p>Ability to use graphic design software. (A)</p> Signup and view all the answers

Regarding the Python program for calculating the square of the diagonal length of a rectangle (K = A**2 + B**2) given side lengths A and B: Statement 'Variable B has an integer type.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding the Python program for calculating the square of the diagonal length of a rectangle (K = A**2 + B**2) given side lengths A and B: Statement '** is the exponentiation operator.' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding the Python program for calculating the square of the diagonal length of a rectangle (K = A**2 + B**2) given side lengths A and B: Statement 'When entering the values 1 and 2 respectively, the program will print 6.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding the Python program for calculating the square of the diagonal length of a rectangle (K = A**2 + B**2) given side lengths A and B: Statement 'To print the length of the diagonal, we use the square root function.' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding the Python program that counts even numbers in a range [L, R]: Statement 'The program prints the count of odd integers in the segment [L, R].' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding the Python program that counts even numbers in a range [L, R]: Statement 'When inputting the two numbers 3 and 7, the program will print 2.' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding the Python program that counts even numbers in a range [L, R]: Statement 'When inputting the two numbers 3 and 7, after the program finishes, the value of L is 7.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding the Python program that counts even numbers in a range [L, R]: Statement 'When the first input value is 3, for the program to print the value 3, the second number can only be 9.' is True or False?

<p>False (B)</p> Signup and view all the answers

Given bit sequences A = 1001 and B = 11: Statement 'Bit sequence A represents the number 1001 in decimal.' is True or False?

<p>False (B)</p> Signup and view all the answers

Given bit sequences A = 1001 and B = 11: Statement 'If the last bit on the right of bit sequence A is decremented by 1 unit, the value of bit sequence A in decimal also decreases by 1 unit.' is True or False?

<p>True (A)</p> Signup and view all the answers

Given bit sequences A = 1001 and B = 11: Statement 'The result of adding the two bit sequences A and B is the bit sequence 1100.' is True or False?

<p>True (A)</p> Signup and view all the answers

Given bit sequences A = 1001 and B = 11: Statement 'The result of the operation A AND B OR A is 1001.' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding data encoding in computers: Statement 'Unicode is the currently popular character encoding table used for encoding text.' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding data encoding in computers: Statement 'When sampling an audio signal over time, the continuous waveform graph is discretized into many very short consecutive samples (segments).' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding data encoding in computers: Statement 'Each primary color in the RGB color system is represented by a bit sequence of different lengths.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding data encoding in computers: Statement 'In the extended ASCII table, knowing that the character "A" has the decimal code 65, then the character "D" has the decimal code 70.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding a graphic design scenario (drawing a flag logo): Statement 'The flag is drawn using the rectangle shape tool (from the selection or available graphic object tools).' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding a graphic design scenario (drawing a flag logo): Statement 'The text belongs to both layers: the star layer and the flag layer.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding a graphic design scenario (drawing a flag logo): Statement 'The flag layer is above the star layer, thus obscuring the star layer.' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding a graphic design scenario (drawing a flag logo): Statement 'The edges of the flag cannot be bent into the desired shape.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding creating a greeting card graphic: Statement 'The card's background color and pattern are gradient colors (colors from available samples).' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding creating a greeting card graphic: Statement 'The card's text can be created using an available tool to create text with a drop shadow.' is True or False?

<p>False (B)</p> Signup and view all the answers

Regarding creating a greeting card graphic: Statement 'Because the software does not have a built-in tool to create patterns with arbitrary shapes, one must find a way to create the tilde-shaped pattern.' is True or False?

<p>True (A)</p> Signup and view all the answers

Regarding creating a greeting card graphic: Statement 'To create a multi-colored balloon bunch, one can create one balloon with a transparent background, then copy it into new balloons and color each one.' is True or False?

<p>True (A)</p> Signup and view all the answers

Flashcards

Advantage of Digital Storage

Storing information on digital devices allows for large data storage.

Correct Data Storage Unit

1 TB (Terabyte) = 1024 GB (Gigabytes)

How a Computer Works

A computer works according to a program.

Not a Smart Device

A device that is not considered a smart device.

Signup and view all the flashcards

Default Smart Phone App

An application in a smart phone by default.

Signup and view all the flashcards

Finding New Apps

A way to find games missing on the device.

Signup and view all the flashcards

Scope of the Internet

Scope of the Internet includes the entire world.

Signup and view all the flashcards

Iot Example

An example of the Internet of Things.

Signup and view all the flashcards

Cyberbullying Behavior

Posting threatening information online.

Signup and view all the flashcards

Open Internet Resource Traits

Shared, editable, and free of charge.

Signup and view all the flashcards

Un-translatable Data Type

A data type Google Translate cannot translate.

Signup and view all the flashcards

Digital Environment Violation

Act violating ethics/laws of digital environment.

Signup and view all the flashcards

Violation of intellectual property

Violating intelectual property rights example.

Signup and view all the flashcards

Not a Copyright Violation

An action not infringing on an author's rights.

Signup and view all the flashcards

Assignment Operator

Assigning a value to variable.

Signup and view all the flashcards

Programming Loop

A loop statement repeats until a condition occurs.

Signup and view all the flashcards

Purpose of Subroutines

Helps reduce code repetition, makes a problem easiert to solve.

Signup and view all the flashcards

Required Function Component

Functions require parameters.

Signup and view all the flashcards

Initiating a List

Correct list syntax.

Signup and view all the flashcards

Study Notes

  • This is a sample test for the 10th grade in Informatics.
  • The time allowed is 50 minutes, not including the time for distributing the test.

Part 1: Multiple Choice

  • This section contains multiple-choice questions.
  • Only one answer should be selected for each question.
  • Question 1: Asks about the advantages of storing information on digital devices
    • Incorrect options include: data cannot be deleted, data is absolutely secure, storage capacity depends entirely on the device size.
    • Correct option is: large amount of data can be stored.
  • Question 2: Asks about a correct equality regarding units of information storage
    • Correct answer is: 1 TB = 1024 GB.
    • Incorrect options include: 1GB = 1024 KB, 1MB = 1024 B, 1B = 1024 bit.
  • Question 3: Asks for an incorrect statement about computers
    • Correct answer is: A computer can perceive smells.
    • Incorrect options include: A computer can work continuously; A computer works automatically; A computer works according to a program.
  • Question 4: Asks for an example of a non-smart device
    • Correct answer is: A handheld calculator used in a graduation exam.
    • Incorrect options include: A robot vacuum cleaner; A camera that detects intrusion; A self-driving car.
  • Question 5: Asks about a pre-installed application on smartphones
    • Correct answer is: A web browser.
    • Incorrect options include: Surveillance Camera, Electronic Health Records, Zoom.
  • Question 6: Asks about the best way to find a game application that is available on the phone
    • Correct answer is: Search in the app store or repository on that phone.
    • Incorrect options include: Searching on a smartwatch connected to the phone, Connecting the phone to a computer, Connecting the phone to a TV.
  • Question 7: Asks about the correct definition of the scope of the Internet
    • Correct answer is: Global.
    • Incorrect options include: A building, A city, A country.
  • Question 8: Asks where the Internet of Things (IoT) is most clearly demonstrated
    • Correct answer is: Automatic toll collection system.
    • Incorrect options include: A milk tea shop management system; A student record storage system; An exam grading system in a test.
  • Question 9: Asks about an act of cyberbullying
    • Correct answer is: Posting threatening information online.
    • Other options include: Posting personal photos to social media, Sending many emails for homework exchange, Texting to ask for homework solutions.
  • Question 10: Asks about the characteristics of open educational resources on the Internet
    • Correct answer is: Can be freely modified and shared,
    • Incorrect options include: Partially free, Free, Allowed for commercialization,
  • Question 11: Asks which data type cannot be translated by Google Translate on a computer
    • Correct answer is: Voice
    • Incorrect options include: Text files, Scanned images, Video
  • Question 12: Which action violates ethics, laws, and culture in the digital environment?
    • Correct answer is: Posting personal information of others without consent.
    • Other options include: Sending many messages via social networks to others, Sharing a school's enrollment information after its release, Sending emails sharing personal information.
  • Question 13: Which case violates Intellectual Property Law regarding the use of published digital works?
    • Correct answer is: Changing the author's name to an individual or organization's name.
    • Other options include: Copying a work for archiving in a library for research purposes; Converting work to braille for the visually impaired; Citing works for teaching without distorting intention or targeting commercial purposes.
  • Question 14: Which action does NOT violate copyright?
    • Correct answer is: Author uses an artist's photo with permission, artist is credited.
    • Other options include: Publisher reprints book with consent of one author but not other; Author uses photo without permission but credits the artist; Publisher publishes work of foreign author after emailing for permission but receiving no response.
  • Question 15: Which operator below is used for assignment in Python?
    • Correct answer is: a = b + 5
  • Question 16: Given the python code:
    • n = int(input("Nhập vào một số nguyên: ")) print(n/2)
  • If the input is 5, the output is 2.5.
  • Question 17: Which command is needed to get the number n until you get a positive integer?
  • Correct answer is: Loop statement.
  • Question 18: Which of the following statements about the purpose of using subroutines in programming is incorrect?
    • Correct answer is: Help the program run faster.
  • Question 19: In Python, function components are either required or optional. Which of the following correctly states what are the required components in a function?
    • Correct answer is: Function name
  • Question 20: Python code:
    • def tinh(int a): b = a**a return b print(tinh(3))
  • What is the output of this program?
    • The result is 27.
  • Question 21: Which command is used to initialize a list in Python?
    • Correct answer is: lst = [1,2,3,5]
  • Question 22: What line in the code has incorrect indentation:
    • n = int(input("Nhập vào một số nguyên n: ")) if n > 0: print("n là số nguyên dương”) else: print("n không phải là số nguyên dương”)
  • Correct answer is: The line "else:"
  • Question 23: Given two lists X and Y, which option appends Y to the end of X:
    • Correct answer is: X + Y
  • Question 24: Which skill is most essential for a computer graphic designer?
    • Correct answer is: Knowledge of graphic program.

Part 2: True/False

  • This section contains True/False questions.

Common Section for All Students

  • Question 1: A teacher asks a student to write a program to calculate the square of the length of the diagonal of a rectangle when the lengths of two sides are known:
    • The provided Python program is: A = float(input()) B = float(input()) K = A** 2 + B ** 2 print(K)
      • a. The variable B is an integer. -> False
      • b. ** is the exponentiation operator. -> True
      • c. When entering the values 1, 2, the output will be 6 -> False
      • d. To print the length of a diagonal, we use the square route function. -> True
  • Question 2: Given Program: L = int(input()) R = int(input()) cnt = 0 while L <= R: if L% 2 == 0: cnt += 1 L += 1 print(cnt)
    • a. The program prints the number of odd number in the section [L,R]. -> False
    • b. When entering two numbers 3 and 7, the program will print 2. -> True
    • c. When entering two numbers 3 and 7, after the program has ended, the value of L is 7 -> False
    • d. When the first value is 3, in a program printing the value of 3, the second number would be 9 -> False

Specialized Section

Computer Science (CS)

  • Question 3. Given two bit sequences A and B: A=1001 B=11
    • a. The bit sequence A represents number 1001 in the decimal system. -> False
    • b. If reduce the last bit from bit sequence A by 1, the corresponding value also drops by 1 in the decimal system.
    • c. Summation of the two bit sequences A and B results in bit sequence 1100. -> True
    • d. The result of the expression A AND B OR A is 1001 -> True
  • Question 4. In a computer, information in the form of text, sound or image,... are encoded as a bit string to store and process.
    • a. Unicode is the most common encoding table used to encode text. -> True
    • b. When taking the sound signal in time (sampling), people discretize the continuous wave graphically into many short sequential samples (segments). -> True
    • c. Each base color in the RGB color system is represented by a bit sequence of a different amount of lengths. -> False
    • d. In expanded ASCII, knowing the “A” character corresponds to the decimal number 65, then “D” is the decimal 70. -> False

Information Technology Application (ICT)

  • Question 5. A student uses graphics design software to draw a logo. The logo consists of a national flag with a text of something below. The student first create the star, then the rectangle national flag, and then adds text
    • a. The flag has been drawn using the rectangle option. -> True
    • b. The text belongs to 2 layers: a rectangle layer, a star layer. -> False
    • c. the flag layer is on the layer about the star, so it hides the star layer. -> False
    • d. the edges on flag can be bent towards the desired shape. -> False
  • Question 6. A group of students uses graphics design software to create a new year greeting card. The card has a background that gradually changes from pink to white with string/text "Happy New Year" in red and having the same shade:

      + a. Background card and pattern are flower colors. -> True
      + b. You may only create a font/text which have shade with a pre-set program. -> False
      + c. since the program does not pre-set to be able to create patterns, we need to create a wave shaped pattern-> True
      + d. in order to create multi-colored shade, we create a balloon with a green background shade and just copy and change those ball shade. -> True
    

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

More Like This

Đơn vị lưu trữ dữ liệu
10 questions
Automated Data Storage Systems Quiz
12 questions
Module 8: Digital Storage Quiz
21 questions
Use Quizgecko on...
Browser
Browser