Friday, January 1, 2021
Tuesday, December 29, 2020
Class-7 Chapter-10 Solved Exercise
MCQ
1 d
2 a
3 c
4 d
5 a
T/F
1 T
2 F
3 F
4 T
5 F
FIB
1. Comarision operator
2. +
3. Sequential
4. colon
5.precedence
Matching
1. e
2. d
3. a
4. b
5. c
One word
1. Operators of the highest precedence are performed first.
2. Operators at the top of the table have the lowest precedence.
3. Used to replicate a string multiple times.
4. It is used to reserve the logica; state of its operand.
5. '/' Operator divides left side operands with right side operand. Result is the quotient.
'//' operator is the quotient in which the digits after the decimal points are not taken into account.
Answer in One word.
1. An operator is a symbol which helps the user to command the computer to do a certain mathematical or logical manipulation.
2. Operand are the values or variables, which the operator is applied to. The value of the operands can be manipulated by using operators.
3. Assiggnment Operators : Python assignment operators are used for assigning the value of the right operand to the left operand.
Relational Operators :- These operators compare the values on either side of the operand and determine the relation between them.
4. Logical operators in python are used for conditional statements are true or false. Logical operators in Python are AND, OR and NOT.
5. Decisions in a program are used when the program has conditional choices to execute code block.
Class-8 Chapter-10 Solved Exercise
MCQ
1. d
2. c
3. c
4. c
5. b
T/F
1. F
2. T
3. F
4. T
5. F
FIB
1. repeating loops
2. While loop
3. membership operator
4. false
5. one
Matching
1. c
2. d
3. b
4. e
5. a
Answer in one word
1. range (start, stop, step)
2. while loop
3. for <variable>in range (intial value, final value, step value):
loop body(statments to be executed)
4. While<condition>
loop body(statementes to be executed)
5. A post increment operator is used to increment the value of variable after executing expression completely in which post increment is used.
Answer the following
1. For loops are typically used when the number of iteration is non before entering the loop. It is also known as definite loop.
2. For loops are typically used when the number of iteration is non before entering the loop. While loop has one control condition, and executes as long as the condition is true.
3. Python membership operators evaluates if a value exists in a given sequence or not.
4. While<condition>
loop body(statementes to be executed)
eg-
i=1
while i<=10:
print (i)
i=i+1
Class-6 Chapter-10 Solved Exercise
MCQ
1 b
2 c
3 d
4 d
5 a
T/F
1 T
2 F
3 F
4 T
5 F
6 T
7 T
8 T
FIB
1 symbol
2 library
3 instance
4 frame
5
frames layers
6 tween
7 Shape
Matching
1 a
2 c
3 b
4 e
5 d
Answer in
one word
1 Library
2 Graphic
Symbol
3 Movie clip
symbol
4 All
contents of animations are organized into the timeline in flash.
5 Keyframes
are those frames, where major changes in animation take place.
6 Animation
is a method in which figures are manipulated to appear as moving images
7 Ctrl +
Enter
Answer the following
1. Symbol: A
symbol is a reusable object used/created in Flash.
Instances: An instance is a copy of the
original symbol which we drag from the library to the stage.
2. The Timeline determines the timing
of the movie, controlling how fast or slow frames are displayed over time. It
is also where you create layers, which help you organize the various elements
on the Stage. Note the Playhead. The red rectangle will move across the
Timeline to show you the current frame on the Stage
3. Frame by frame animation: This type of animation is the
traditional style of animation, where we need to draw every frame of animation.
Tweened Animation:
In tweened animation, you only create the starting and the ending frames and let
flash create rest of the in-between frames.
4. Motion
Tweening: In motion tweening , you define properties such as position, size,
and rotation of a shape at one point in time.
Shape
tweening: In shape tweening , you can create an effect similar to morphing,
making one shape Appear to change into another shape over time.
Saturday, December 19, 2020
Class-7 chapter-9 solved exercise
Q.1
Class-8 Chapter-9 Solved exercise
1.
Ans. +
Operator
2.
Ans.
Variables is a quantity, whose value can change as many times as required
during the execution of a program.
3.
Ans. % operator
4.
Ans.
(>>>) sign
5.
Ans.
Less then (<) or greater then (>)
6.
Ans. Int : Integers are positive or negative whole numbers with no decimal point
Float :
float represent real numbers and also we can written with a decimal
point
7.
Ans. The assigned string should be enclosed in
single or double quotes.
8.
Ans. The
float () function converts values received through the input statements into
floating point numbers.
Short Answer Type Questions.
1.
Ans. Python is a popular object oriented
programming language that offeres a lot of flexibility.
Features.
a. Easy to Learn and Use
b. Interpreted Language
2.
Ans: Python IDLE (Integrated Development and Learning Environment) is an
integrated development environment (IDE) for Python. The Python installer for
Windows contains the IDLE module by default.
Stpes for create a new program file in IDLE:-
1.
The IDLE shell window opens up. ...
2.
Opening up a new window will create a
script file window. ...
3.
You can run the script by going "Run --> Run
Module" or simply by hitting F5 (on some systems, Fn + F5).
4.
Before running, IDLE prompts you to save the
script as a file.
3
Ans.
A variable must have a data
type associated with it, for example it can have data types like
integer, decimal numbers, characters etc.
The variable of type Integer stores integer values and a
character type variable stores character value. The
primary difference between various data types is their
size in memory
4.
Ans. Python and Java
are both programming languages. Python variables are dynamically
typed whereas Java variables are statically typed. Java variables
are type checked during compile time, unlike Python.
5.
Ans.
To execute a file
in IDLE,
Step -1 In the IDLE shell window, click on the
file menu
Step -2 Click on New file option
Step-3 Type your program
Step-4 To save the program with name and
extension .py
Step-5 Press
F5 for execute the program
The program will execute and the output will be
shown in the Shell window.
6.
Ans.
The if-elif-else statements provide a method to perform multiple tests on a
condition.
7.
Ans.
If else Statement
Syntax
:
if<condition>:
Statement1
else:
Statement2
8.
Ans.
Python provides a Python Shell, which is used to execute a
single Python command and display the result.
9.
Ans.
Right-click the Python window and select Save As
to save your code either as a Python file (.py). And
give the location on desktop. click on save option. Python code will
be saved.
Thursday, December 17, 2020
class-6 chapter-9 solved exesrsice
Answer in one word or sentence.
Q.1
Ans. Free Transform Tool
Q.2
Ans. Time line
Q.3
Ans. Stage
Q.4
Ans. We can break apart text at two levels.
Q.5
Ans. Ink bottle tool
Q.6
Ans. To erase the whole object with a single click,
we can use of faucet mode in Eraser tool.
Q.7
Ans. A frame is a single step of animation or a piture on the Flash timeline.
short question
answers
1
Ans. The flash software is used to develop interactive graphics and animations
Which can be used on a website or for any other multimedia purpose.
2.
Ans. The Timeline consists of division of frames arranged on a numbered grid. It contains the sequence of images (in frames) which make the animation.
3.
Ans. Rectangle Tool :- By using the Rectangle tool, you can draw rectangle , squares, polygons and stars.
Oval Tool : - By using Oval tool, you can draw circle and ovals.
4.
Ans. The free Transform tools lets you scale, rotate and skew your shapes.
5.
Ans
Ink Bottle Tool :- Using the ink Bottle tool, you select the stroke colour and change the colour, width and style of the lines drawn and outlines.
Paint Bucket Tool :- Using the Paint Bucket tool, you can select fill colour and fill it in any closed shape or change the already filled area.
Go To Other Website
-
Q.1 Ans. \t 2. Ans. \n 3. Ans. a=int(input("enter value = ")) 4. Ans. When we enter some commands at the Shell prompt and see the...
-
Class-6 Chapter-3 A. Choose the correct option. 1. Ripping helps to save media files as: Ans. d. All of these 2. ...
-
Chapter-3 Fill in blanks and Matching