The tool used to select text on a path in Illustrator is the:
- aDirect Selection Tool
- bSelection Tool
- cPen Tool
- dEraser Tool
135 questions · 14 sections
The tool used to select text on a path in Illustrator is the:
The Eyebeam (I-beam) cursor that appears when text on a path is selected lets the user:
To edit the path itself (its anchor points), one clicks the path with the:
After selecting a path with the Direct Selection Tool, what becomes visible on it?
If the path is a curve, the text placed on it will:
If the path is smaller than the text:
To make the hidden text appear when the path is too short, the user must:
Editing the anchor point of a path follows the rules of:
Which tool exposes anchor points so that a path can be edited?
To shift text along its path, the user clicks and drags the:
Text whose path is a circle will, after editing, behave such that the text:
Which two tools are used in combination for selecting and editing text-on-path?
When the outline of letters is created, the edges of the letters are turned into:
After creating an outline, dragging anchor points changes the letter's:
To create the outline of letters, the first step is to select:
The Create Outline command is given from which menu?
The keyboard shortcut for the Create Outline command is:
After Create Outline is applied, the text is converted into:
Once outlined, the letter's shape can be edited following the rules of:
After outlining, which of the following can be applied to the letters?
After Create Outline is applied, the letters are no longer treated as:
Outlining letters is most useful when the designer wants to:
To place an image into Illustrator, the command is given from which menu?
The command used to insert an image into Illustrator is:
After choosing the Place command, what appears on the screen?
To find a file in the Place dialogue box, the user must know:
The required file is selected after opening the:
After selecting a file, which button is clicked to insert it into the artwork?
After clicking Place, the image of the selected file appears on the:
When a Photoshop image is placed in Illustrator, what mark appears across it?
To remove the cross sign on a placed Photoshop image, the user must:
The number of resize boxes that appear when a placed image is selected is:
The resize boxes appear on the four arms and on the four:
By dragging the resize boxes, the placed image can be:
Which tool is used to select the placed image after the cross-sign is gone?
The group activities suggested at the end of this section include:
Why might titles and menu bars look slightly different on different users' computers?
Which software is suggested for drawing a school monogram?
Which software is suggested for editing an image in the group work?
The footer "Forma-15, ICT-(9-10)" indicates the:
How many types of media are typically combined in multimedia?
Where is multimedia used?
Which of the following is a multimedia software?
Multimedia applications include:
Rakib must present his company to foreign guests. Which software is most useful for him?
Using PowerPoint, Rakib can:
The Rakib passage in the exercise is an example of which item type?
PowerPoint is best categorised as:
MS Access is used for:
MS Excel is best described as a:
MS Word is best described as a:
Which combination of media is typically used to define multimedia content?
Multimedia is best defined as the combination of:
One use of multimedia in education is:
Animation is best described as:
Animation is most popular in fields such as:
The purpose of PowerPoint is to:
To insert an image into a slide in PowerPoint, one typically uses:
Illustrator is, in one sentence:
One use of Illustrator is to:
Problem-solving is the process of identifying:
Problem-solving involves analyzing the surrounding circumstances and:
The first step typically included in the problem-solving process is:
After defining the problem, the next typical step is:
After listing potential solutions, the process moves to:
The final stage of problem solving is:
In real life we encounter problems and we need to solve them to:
The full problem-solving cycle typically includes which steps?
Computers and electronic devices can directly understand only:
Writing instructions only in 0 and 1 is:
Languages that follow specific rules so the computer can convert them are called:
Examples of programming languages include:
Bengali, English, French, Latin, and Spanish are examples of:
To give instructions to a computer, we must write them:
Which CANNOT be directly understood by a computer without translation?
Once you learn one programming language, learning others becomes:
The basic structures of all programming languages are:
In C, every statement must end with a:
In Python, ending a statement with a semicolon is:
Machine code is essentially a:
Translating between programming language and machine code is done by a:
The translator program in a computer can be of how many types according to this chapter?
Which of the following are the two types of translator described?
After conversion to machine code through a translator, the computer can:
The output of any translator is fundamentally:
The need for a translator arises because:
A compiler converts the entire set of instructions into machine code:
The translation process performed by a compiler is called:
If the compiler finds errors anywhere in the instructions, it:
The compiler will perform the translation only when the instructions are:
An interpreter translates instructions:
The translation process performed by an interpreter is called:
When the interpreter encounters an error in any instruction, it:
Which translator type is best described as "all-or-nothing"?
Which translator translates "one instruction at a time and stops on error"?
Both compiler and interpreter ultimately produce:
A defining feature of an interpreter compared to a compiler is:
Python is most commonly run via a/an:
C is traditionally a:
To start, learning any one of the commonly used programming languages is:
The choice of a programming language depends generally on:
For those new to programming, which language is recommended in this chapter?
Python is described as having:
Python is widely used in fields like:
According to the text, learning your second programming language is:
Which trait makes Python beginner-friendly per the text?
To start writing Python on a computer, the first task is to:
Python can be downloaded from:
After downloading Python, the user proceeds to:
During Python installation, after checking the boxes at the bottom, the user clicks:
If installation asks for permission to install, the user should:
After successful Python setup, a message appears indicating:
After Python is installed, the user still needs another software in order to:
The Python version shown in the installation screenshot of this chapter is:
Thonny can be downloaded from:
Thonny is described in this chapter as:
In Thonny's first-time setup window, the default Language shown is:
The default Initial settings option in Thonny is:
After picking language and initial settings, the button clicked to open Thonny is:
In the Thonny window, the area where the user writes code is the:
In the Thonny window, the area where the output of the code is shown is the:
To save a Thonny program, the user clicks:
To see the output of code in Thonny, one clicks:
Which built-in Python function prints output?
Inside print(), the text to be printed should be wrapped in:
The first program shown in the chapter prints:
The exact code given to print Hello World in this chapter is:
print('Hello World!')echo 'Hello World!'printf("Hello World!")console.log('Hello World!')Clicking which button in Thonny will execute the program?
The output of running print('Hello World!') is:
The screenshot suggests the saved Hello World program file is named:
After saving the file, where is the file name displayed?
Python is referred to as which type of translator for typical use?
The general syntax to print a custom message in Python is:
print('your text')print = your texttype your textecho: your textRunning print('Hello') in Python produces the output:
Which statements about Python's print function are true?