Skip to main content

ads1

Class 11 Chapter :- 4 Introduction to Layers

 Class 11  Chapter :- 4 Introduction to Layers


(01) Which of the following objects are required to draw on canvas to create animation on ‘sunrise scene’?

a)Mountains b) sun c) birds,trees d) all of them

(02) A ..................... in synfig refers to different levels on which we can place our drawing objects or pictures, stacked above and below each other.

a)Layer b) slide c) animation d) Drawing

(03)Use of what gives the freedom to work with each object individually?

a)Slide b) layers c) animation d) Drawing

(04) Modifying ........................does not disturb the other objects either above or below it.

a)Slide b) layers c) animation d) drawing

(05)  ............ can also be rearranged, allowing us to change the order in which objects are displayed,thus changing the appearance of our scene.

a)Slide b) Layers c) Animation d) Drawing

(06) In synfig, each individual element of the ................ is broken down into layers.

a)Canvas b) page c) document d) presentation

(07) The layers in synfig are from other animation software.

a)Different b) same c) similar d) none of them

(08) Every has their own layer.

a) Object b) element c) effect d) all of them

(09) A layer represents a single primitive such as -

a)Object b) outline c) image d) all of them

(10) The upper layer can change the behavior of the layers below it and can distort or modify the layers beneath using
a)Effect b) filter layers c) (a) or (b) d) none of them

(11) In synfig, there are different types of layers such as-

a)Gradient b) blur c) distortion d) all of them

(12) Each layer has its own set of .

a)Parameters b) canvas c) animation d) command

(13) The parameters of a layer can be seen by selecting the layer from the panel and then looking into the params panel.

a)Layers b) canvas c) primitives d) filter

(14) ........... defines how the image is layered on everything below it.

a)Animation mode b) Blend mode c) Multimode d) Image mode

(15) In Blend mode,the default setting is , which simply displays the content of the layer.

a)Primary b) composite c) Encapsulated d) Straight onto

(16)  ................. what is used for the gradient to be applied only to a single object and not all the objects below the gradient layer?

a)Encapsulation b) composite c) straight onto d) none of them

(17)  ......... means grouping things together.

a)Encapsulation b) composite c) straight onto d) none of them

(18) If we want to apply ............ to a particular object or a group of objects then we need to encapsulate them into a layer.

a)Gradient b) color c) outline color d) animation

(19) Using .......... we can apply the gradient to one layer without applying it to the layers beneath it

a)Encapsulation b) composite c) straight onto d) none of them

(20) Which key should be press and hold to select two layers?

a)CAPS     b) CTRL c) SHIFT d) ALT

(21) Clicking on Right click -> Encapsulate will create a new layer named .

a)Inline canvas b) outline canvas c) inbetween canvas d) animated canvas

(22) Clicking on a small triangle near the inline canvas will to show the related layers.

a)Expand         b) compress c) enlarge d) reduce

(23) If we the gradient layer using the lower layer button the gradient will now be applicable to only one of the circle layer.

a)Reposition b) animate c) delete d) duplicate

(24) The gradient layer has an effect on only the layers that are it in the encapsulated area.

a)Above     b) below c) right d) left

(25) A ............. can only modify the data that it get from the layer directly below it.

a)Layer b) canvas c) slide d) animation

(26) If Blur Layer is used on of the layer inside the inline canvas, it would just blur the inline canvas layers and not every layer that lies under the inline canvas.

a)Top b) bottom c) left d) right

(27) Which tool is used to create user path for rotation?

a)Bline tool b) Line tool c) path tool d) none of them

(28) Select Bline tool to create our path for rotation and select from the Tool option panel.

a)Create Outline Bline b) Create Region Bline  

 c) Create plant Bline         d) Create curve Gradient Bline

(29) Which key is pressed to clear the Bline?

a) CTRL b) ESC c) ALT d) SHIFT

(30) Which tool is used to finish the Bline?

a)Transform tool b) smooth Finish tool c) scale tool d) Finish tool

(31) To add a new rotate layer above the circle layer select the in the layers panel.

a)Circle layer -> Right click -> New layer -> Transform -> Rotate

b)Circle layer -> Right click -> New layer -> Transform -> Rotate -> Transform

c)Circle layer -> Left click -> New layer -> Transform -> Rotate ->Transform

d)Circle layer -> Left click -> New layer -> Transform -> Rotate

(32) ........... feature is used to attach a vertex of an object to a Bline.

a)Link to Bline b) Link to vertex c) Link to object d) Link to layers

(33) Drag the circle a little bit using the positioning duck which is in color to record the starting position on the “0f” mark in the timeline.

a)Red     b) Green c) Yellow d) Black

(34) The in each image shows the position of the circle at that particular time.

a)Timeline b) keyframe c) animation d) effect

(35)  .......... the circle directly to the end point by moving in clockwise direction. This will not record properly the position of the circle at different timing locations.

a)Drag b) Do not Drag c) Click and Drag d) Click

Link to download more MCQ :- 


Link to Download Chapter :-  4 Introduction to Layers :- 




ads2

Popular posts from this blog

11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following:

    11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following: Basic Salary <= 10000 : HRA = 20%, DA = 80% Basic Salary <= 20000 : HRA = 25%, DA = 90% Basic Salary > 20000 : HRA = 30%, DA = 95% Static Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     if(basic <=10000)     {         da = basic * 0.8;         hra = basic *0.2;     }              else if(basic <=20000)     {         da = basic * 0.9;         hra = basic *0.25;     }     else     {         da = basic * 0.95;         hra = basic * 0.3;     }     gross = basic + da + hra;     System.out.println("The Gross Salary is :-"+gross);     } } Output :-  Dynamic Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     Scanner in = new Scanner(System.in);     System.out.println("Enter the Basic Salary

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise or class wise.

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise  or class wise. Solution :-   # x-axis is shows the subject and y -axis # shows the markers in each subject # import pandas and matplotlib  import pandas as pd  import matplotlib.pyplot as plt # Simple Line Chart with setting of Label of X and Y axis, # title for chart line and color of line  subject = ['Physic','Chemistry','Mathematics', 'Biology','Computer'] marks =[80,75,70,78,82] # To draw line in red colour plt.plot(subject,marks,'r',marker ='*')     # To Write Title of the Line Chart plt.title('Marks Scored') # To Put Label At Y Axis plt.xlabel('SUBJECT')           # To Put Label At X Axis plt.ylabel('MARKS')             plt.show() Output :- 

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category.

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category. import pandas as pd  # initialize list of lists data = [['CAR','Maruti',1000000],['AC','Hitachi',55000],['AIRCOLLER','Bajaj',12000], ['WASHING MACHINE','LG',15000],['CAR','Ford',7000000],['AC','SAMSUNG',45000],['AIRCOLLER','Symphony',20000],['WASHING MACHINE','Wirlpool',25000]] Col=['itemcat','itemname','expenditure'] # Create the pandas DataFrame qrtsales = pd.DataFrame(data,columns=Col) # print dataframe.  print (qrtsales) qs=qrtsales.groupby('itemcat')  print('Result after Filtering Dataframe')  print(qs['itemcat','expenditure'].sum()) Output :-