Grade 6 : ICT Sut-3 - Demo Exam

Approved & Edited by ProProfs Editorial Team
The editorial team at ProProfs Quizzes consists of a select group of subject experts, trivia writers, and quiz masters who have authored over 10,000 quizzes taken by more than 100 million users. This team includes our in-house seasoned quiz moderators and subject matter experts. Our editorial experts, spread across the world, are rigorously trained using our comprehensive guidelines to ensure that you receive the highest quality quizzes.
Learn about Our Editorial Process
| By Vinitony12
V
Vinitony12
Community Contributor
Quizzes Created: 1 | Total Attempts: 184
Questions: 15 | Attempts: 184

SettingsSettingsSettings
Grade 6 : ICT Sut-3 - Demo Exam - Quiz

Designed by,
ELIZABETH VINITHA
ICT - TEACHER


Questions and Answers
  • 1. 

    The sequence of instructions for solving a problem is known as ______________. 

    • A.

      Flowchart

    • B.

      Task

    • C.

      Algorith

    • D.

      Problem

    Correct Answer
    C. Algorith
    Explanation
    The sequence of instructions for solving a problem is known as an algorithm. An algorithm is a step-by-step procedure or a set of rules to be followed in order to solve a specific problem or achieve a particular goal. It provides a clear and systematic approach to problem-solving, allowing for efficient and effective solutions to be developed.

    Rate this question:

  • 2. 

    This symbol denotes _____________.

    • A.

      Process

    • B.

      Input

    • C.

      Output

    • D.

      Stop

    Correct Answer
    D. Stop
    Explanation
    The given symbol represents the action of stopping. It is commonly used in flowcharts or diagrams to indicate the termination of a process or program.

    Rate this question:

  • 3. 

    ____________ is an example for LOGO command.

    • A.

      CC

    • B.

      RT

    • C.

      VT

    • D.

      BC

    Correct Answer
    B. RT
    Explanation
    RT is an example of a LOGO command. LOGO is a programming language that was designed for educational purposes. RT stands for "right turn" and is used to rotate the turtle (a graphical cursor) in the LOGO programming environment. This command is used to change the direction in which the turtle is facing, allowing for the creation of various shapes and patterns.

    Rate this question:

  • 4. 

    The turtle always moves in the direction that its ___________  is pointing.

    • A.

      Tail

    • B.

      Head

    • C.

      Angle

    • D.

      None of the above

    Correct Answer
    B. Head
    Explanation
    The turtle always moves in the direction that its head is pointing. The head of the turtle serves as its front and determines the direction of movement.

    Rate this question:

  • 5. 

    This symbol denotes _____________of a process.

    • A.

      Process

    • B.

      Start

    • C.

      Input

    • D.

      Flow

    Correct Answer
    D. Flow
    Explanation
    This symbol denotes the flow of a process. In process mapping or flowcharting, the flow symbol is used to represent the movement or progression of a process from one step to another. It indicates the sequence of actions or steps that need to be followed in order to complete the process. The flow symbol helps in visualizing the flow of information, materials, or activities within a process, making it easier to understand and analyze the process.

    Rate this question:

  • 6. 

    ______________ command is used to set flood color.

    • A.

      setfill

    • B.

      Fc

    • C.

      Setfc

    • D.

      Fill

    Correct Answer
    C. Setfc
    Explanation
    The correct answer is "setfc". This command is used to set the flood color.

    Rate this question:

  • 7. 

    Input Output box looks like a diamond.

    • A.

      YES

    • B.

      NO

    Correct Answer
    B. NO
    Explanation
    The answer is NO because the input output box does not look like a diamond.

    Rate this question:

  • 8. 

    This LOGO procedure will draw a circle.repeat 360[rt 4 fd 6]

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    The given LOGO procedure uses a repeat loop to draw a circle. The loop repeats 360 times, with each iteration turning the turtle right by 4 degrees and moving it forward by 6 units. Since a circle has 360 degrees, this procedure will effectively draw a circle. Therefore, the correct answer is True.

    Rate this question:

  • 9. 

    The command in logo are case sensitive.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    Logo is a programming language that is not case sensitive. This means that the command "forward" is the same as "FORWARD" or "Forward". Therefore, the statement "The command in logo are case sensitive" is false. In Logo, the commands can be written in any combination of uppercase and lowercase letters.

    Rate this question:

  • 10. 

    To move the turtle forward which command is used?

    • A.

      Fd

    • B.

      Fdw

    • C.

      Forward

    • D.

      Both (i) and (iii)

    Correct Answer
    D. Both (i) and (iii)
    Explanation
    Both (i) and (iii) are correct answers because in the turtle graphics library, the command "Fd" and the command "Forward" are both used to move the turtle forward. The "Fd" command is a shorthand notation for "Forward" and they both perform the same function of moving the turtle in the forward direction.

    Rate this question:

  • 11. 

    By default what is the color of lines draw by turtle?

    • A.

      Red

    • B.

      Blue

    • C.

      Black

    • D.

      White

    Correct Answer
    C. Black
    Explanation
    By default, the color of lines drawn by the turtle is black. This means that when the turtle moves and creates lines on the screen, those lines will appear in black color.

    Rate this question:

  • 12. 

    Correct the error in FD50

    • A.

      FD-50

    • B.

      FD_50

    • C.

      FORWARD-50

    • D.

      FD 50

    Correct Answer
    D. FD 50
    Explanation
    The correct answer is "FD 50" because it follows the correct format of the other options provided. The correct format consists of two letters followed by a space and then a number. The other options either have incorrect characters or do not follow the specified format.

    Rate this question:

  • 13. 

    Which command is used to move the turtle backward?

    • A.

      BK

    • B.

      BACK

    • C.

      BACKWARD

    • D.

      Both (i) and (ii)

    Correct Answer
    D. Both (i) and (ii)
    Explanation
    Both (i) and (ii) are correct answers because the command "BK" and the command "BACK" can both be used to move the turtle backward. The command "BK" is a commonly used abbreviation for "BACK" and is recognized by most turtle graphics systems. Therefore, both commands can be used interchangeably to achieve the desired result of moving the turtle backward.

    Rate this question:

  • 14. 

    What is used by turtle to draw line?

    • A.

      Graphics

    • B.

      Ink

    • C.

      Pen

    • D.

      All of the above

    Correct Answer
    C. Pen
    Explanation
    The turtle uses a pen to draw a line. The pen is an essential tool for the turtle as it allows it to leave a visible mark on the canvas or screen while moving. The turtle can control the pen's attributes such as color, thickness, and style to create different types of lines and shapes. Therefore, the correct answer is "Pen."

    Rate this question:

  • 15. 

    Which command is used to erase the line?

    • A.

      ERASE

    • B.

      PENERASE

    • C.

      PE

    • D.

      Both (ii) and (iii)

    Correct Answer
    D. Both (ii) and (iii)
    Explanation
    Both (ii) and (iii) are correct answers because the command "PENERASE" and its abbreviation "PE" are both used to erase a line. The command "ERASE" is not mentioned in the options, so it is not a correct answer.

    Rate this question:

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 17, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Feb 19, 2017
    Quiz Created by
    Vinitony12
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.