Web Application Class 11 Solutions

Web Application Class 11 Solutions – Markup languages, scripting languages, server-side technologies, and web architecture are all taught to CBSE students. Besides from learning how to design and construct web applications using frameworks and libraries, they also study web development tools and technologies including HTML, CSS, and JavaScript.

Web security, data protection, and ethical issues in web development are additional topics covered in the classroom. The purpose of the course is to give students the knowledge and abilities needed to develop and deploy web applications for a variety of industries and domains.

Web Application Class 11 Solutions

Employability Skills QA

Web Application Class 11 Questions and Answers

Web Application Class 11 MCQ

Web Application Class 11 MCQ – In CBSE class 11, students learn about web application development as part of the Computer Science curriculum. This includes an understanding of web architecture, markup languages, scripting languages, and server-side technologies. Students learn about web development tools and technologies, such as HTML, CSS, and JavaScript. They are also taught how to design and develop web applications using various frameworks and libraries. Additionally, students learn about web security, data protection, and ethical considerations in web development. The aim of this course is to equip students with the knowledge and skills required to develop and deploy web applications for various industries and domains.

Web Application Class 11 MCQ

Employability Skills MCQs

Web Application Class 11 MCQs

JavaScript Class 11 MCQ

javascript class 11 mcq

Teachers and Examiners (CBSESkillEduction) collaborated to create the JavaScript Class 11 MCQ. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

JavaScript Class 11 MCQ

1. JavaScript was developed in 1995 by Brendan Eich, at Netscape, and first released with __________.
a. Netscape
b. Chrome
c. Safari
d. Internet Explorer

Show Answer ⟶
a. Netscape

2. JavaScript is an ____________ computer programming language.
a. Compiler
b. Interpreter
c. Assembler
d. None of the above

Show Answer ⟶
b. Interpreter

3. Which of the following features belong to JavaScript.
a. Browser Support
b. Client and Server-side Support
c. Functional Programming Language
d. All of the above

Show Answer ⟶
d. All of the above

4. With the help of JavaScript we can create ___________.
a. Cookies
b. Web Application
c. Multimedia element
d. All of the above

Show Answer ⟶
d. All of the above

5. JavaScript is a __________ Language.
a. Client Side
b. Server Side
c. Both a) and b)
d. None of the above

Show Answer ⟶
c. Both a) and b)

6. JavaScript is not used to _________ the files on client machines.
a. Read
b. Write
c. Both a) and b)
d. None of the above

Show Answer ⟶
c. Both a) and b)

7. JavaScript is ____________ programming language.
a. Procedure Oriented Programming Language
b. Object Oriented Programming Language
c. Both a) and b)
d. None of the above

Show Answer ⟶
b. Object Oriented Programming Language

8. A __________ is an application program with a graphical user interface for displaying HTML files, used to navigate the World Wide Web file.
a. Browser
b. Web Application
c. Website
d. None of the above

Show Answer ⟶
a. Browser

9. _________ between words and tabs are ignored by the Browser.
a. White Space
b. Black Space
c. No Space
d. None of the above

Show Answer ⟶
a. White Space

10. Variables in JavaScript can be defined using the ___________ keyword
a. Variant
b. Var
c. Variable
d. None of the above

Show Answer ⟶
b. Var

11. JavaScript is supported by_____________.
a. Netscape
b. Opera
c. Chrome
d. All of the above

Show Answer ⟶
d. All of the above

12. &&, ||, ! are example of
a. Arithmetic Operator
b. Logical Operator
c. Bitwise Operator
d. Assignment Operator

Show Answer ⟶
b. Logical Operator

13. Which one is the following statement is known as Control Structure
a. if Statement
b. else if statement
c. switch statement
d. All of the above

Show Answer ⟶
d. All of the above

14. DOM Stands for
a. Document Object Model
b. Digital Operation Machine
c. Document Observe Module
d. Document Option Module

Show Answer ⟶
a. Document Object Model

15. ______________ can contain the data from the user.
a. Variable
b. Statement
c. Keyword
d. Operator

Show Answer ⟶
a. Variable

16. ________________ tag tells the browser about the scripting language.
a. <Script>
b. <HTML>
c. <Language>
d. <JavaScript>

Show Answer ⟶
a. Script

17. _____________ is used to convert string to integer value.
a. Integer()
b. ParseInt()
c. parseInt()
d. Stringtoint()

Show Answer ⟶
c. parseInt()

18. A ______________ is a classification of the type of data that a variable or object can hold.
a. Datatype
b. Constant
c. Unary
d. None of the above

Show Answer ⟶
a. Datatype

19. Sequence of character is known as ______________.
a. Number
b. Character
c. String
d. None of the above

Show Answer ⟶
c. String

20. Compression takes place using the ______________ operator.
a. =
b. ==
c. ===
d. <>

Show Answer ⟶
b. ==

21. _________ Method is used to find the length of the string.
a. length
b. concat()
c. length()
d. search()

Show Answer ⟶
c. length()

22. Extension of JavaScript files is ________.
a. .html
b. .js
c. .jsc
d. .java

Show Answer ⟶
d. .java

23. Output of the following would be parseInt(“022”)
a. 3
b. 9
c. 22
d. 2

Show Answer ⟶
c. 22

24. JavaScript Support _____________ Environment.
a. Run-Time Environment
b. Off-Time Environment
c. Digital Environment
d. All of the above

Show Answer ⟶
a. Run-Time Environment

25. Limitations of Static website
a. It has limited functionality
b. It can cost more to upgrade
c. It is less attractive and interactive
d. All of the above

Show Answer ⟶
d. All of the above

26. The script tag must be placed in
a. Head
b. Head and body
c. Title and head
d. All of the mentioned

Show Answer ⟶
d. All of the mentioned

27. Which of the following is correct about features of JavaScript?
a. JavaScript is a lightweight, interpreted programming language.
b. JavaScript is designed for creating network-centric applications.
c. JavaScript is complementary to and integrated with Java.
d. All of the above

Show Answer ⟶
d. All of the above

28. Which built-in method returns the calling string value converted to lowercase?
a. toLowerCase()
b. toLower()
c. changeCase(case)
d. None of the above

Show Answer ⟶
a. toLowerCase()

29. Which of the following functions of Array object sorts the elements of an array?
a. toSource()
b. sort()
c. toString()
d. unshift()

Show Answer ⟶
b. sort()

30. What will happen, if the following JavaScript code is executed?
var count =0;
while (count <10)
{
console.log(count);
count++;
}
a. An error is displayed
b. An exception is thrown
c. The values of count variable are logged or stored in a particular location or storage
d. The value of count from 0 to 9 is displayed in the console

Show Answer ⟶
c. The values of count variable are logged or stored in a particular location or storage

31. Which of the following is the correct output for the following JavaScript code:
int x=8;
if(x>9)
{
document.write(9);
}
else
{
document.write(x);
}
a. 9
b. 0
c. 8
d. Undefined

Show Answer ⟶
c. 8

32. JavaScript was originally implemented as part of a web browser so that ___________ scripts could interact with the user.
a. Client-side
b. Dynamic Side
c. Web Side
d. None of the above

Show Answer ⟶
a. Client-side

33. JavaScript was formalized in the ___________ Script Language.
a. WCAM
b. CAMW
c. ECMA
d. CCMM

Show Answer ⟶
c. ECMA

34. A JavaScript function can accept ____________ and can also return a value.
a. Parameter
b. Function
c. Object
d. Binary data

Show Answer ⟶
a. Parameter

35. JavaScript is officially managed by ___________ Foundation.
a. Chrome
b. Mozilla
c. Netscape Navigator
d. Opera

Show Answer ⟶
b. Mozilla

36. Each line of JavaScript code ends with a _____________
a. Dot
b. Underscore
c. Semicolon
d. Colon

Show Answer ⟶
c. Semicolon

37. ____________ called Bitwise AND operator in JavaScript.
a. &
b. I
c. ^
d. ~

Show Answer ⟶
a. &

38. Which company developed JavaScript?
a. Netscape
b. Bell Labs
c. Sun Microsystems
d. IBM

Show Answer ⟶
a. Netscape

39. Which of the following is the correct syntax to display “Letsfindcourse” in an alert box using
JavaScript?
a. alert-box(“Letsfindcourse”);
b. confirm(“Letsfindcourse”);
c. msgbox(“Letsfindcourse”);
d. alert(“Letsfindcourse”);

Show Answer ⟶
d. alert(“Letsfindcourse”);

40. JavaScript is designed for following purpose –
a. to style HTML pages
b. to execute Queries related to databases on a server
c. to add interactivity to html pages
d. All of the above

Show Answer ⟶
d. All of the above

41. What will be the output of the following JavaScript code?
var string1 = “Letsfindcourse”;
var intvalue = 30;
alert( string1 + intvalue );
a. Letsfindcourse 30
b. 30
c. Letsfindcourse30
d. Exception

Show Answer ⟶
c. Letsfindcourse30

42. What are the three important manipulations done in a for loop on a loop variable in
JavaScript?
a. the initialization, the condition and the Incrimination
b. the initialization, the test
c. the initialization, the test, and Incrimination
d. All of the above

Show Answer ⟶
a. the initialization, the condition and the Incrimination

43. Which of them are not the looping structures in JavaScript?
a. for
b. while
c. forwhich
d. do-while

Show Answer ⟶
c. forwhich

44. Find output of below code
var a = ’20’;
var b = a = 30;
document.write(a+b);
a. Error in Script
b. ’20’30
c. 2030
d. 50

Show Answer ⟶
c. 2030

45. In JavaScript the x===y statement implies that:
a. Both x and y are equal in value, type and reference address as well.
b. Both x and y are equal in value only.
c. Both are equal in the value and data type.
d. Both are not the same at all.

Show Answer ⟶
c. Both are equal in the value and data type.

46. Numbers in JavaScript are double-precision ______________ format.
a. 32-bit
b. 64-bit
c. 128-bit
d. Null

Show Answer ⟶
b. 64-bit

47. A ______________ is a classification of the type of data that a variable or object can hold.
a. Data type
b. Variable
c. Constant
d. Variant

Show Answer ⟶
a. Data type

48. We can parse floating point numbers using the built-in _____________ function.
a. parseFloat()
b. parseInt()
c. parseString()
d. None of the above

Show Answer ⟶
a. parseFloat()

49. String in JavaScript are sequences of characters, each character represented by a _________ number.
a. 32-bit
b. 64-bit
c. 8-bit
d. 16-bit

Show Answer ⟶
d. 16-bit

50. In JavaScript ___________ loop execute at least one time
a. For
b. While
c. Do-While
d. Go-To

Show Answer ⟶
c. Do-While

51. ___________ statement is use to terminate the execution of a looping statement.
a. End
b. Break
c. Stop
d. Null

Show Answer ⟶
b. Break

Employability Skills Class 11 Notes

Employability Skills Class 11 MCQ

Employability Skills Class 11 Questions and Answers

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

JavaScript Class 11 Questions and Answers

javascript class 11 questions and answers

Teachers and Examiners (CBSESkillEduction) collaborated to create the JavaScript Class 11 Questions and Answers. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

JavaScript Class 11 Questions and Answers

1. What is an editor?
Answer – Web developers can produce and change HTML code more quickly and easily by using a sort of software called an HTML editor.

2. What do you understand by a web browser?
Answer – The term “web browser,” sometimes known as a “browser,” refers to software used to access and view webpages. Microsoft Edge, Internet Explorer, Google Chrome, Mozilla Firefox, and Apple Safari are popular web browsers.

3. What are the major types of browser available today?
Answer – Google Chrome, Microsoft Edge (formerly Internet Explorer), Mozilla Firefox, and Apple’s Safari are the most widely used web browsers.

4. What is the advantage of using JavaScript over HTML?
Answer – While JavaScript offers an interface for end users to interact and create dynamic content, HTML offers the actual content. While JavaScript provides a dynamic environment to manage the dynamic events on the web pages, HTML is primarily utilized to create static web content.

5. What are the steps needed to create and run a simple program using JavaScript?
Answer –
Step 1 : Open Notepad file
Step 2 : Write JavaScript code using HTML
Step 3 : Save the file with file name using extension .html or .htm
Step 4 : Open the location, where you have save the file
Step 5 : Double Click on the file

6. Which attribute of the <script> tag helps you include an external JavaScript file?
Answer – The “SRC” attribute is used to insert External JavaScript file –
<script type=”text/javascript” src=”code.js”></script>

7. What are the three ways in which JavaScript can be included?
Answer – The three way to include JavaScript in HTML are –
a. External JavaScript – <script src=”file.js”></script>
b. Internal JavaScript – <script> Write Script code</script>
c. Inline JavaScript – <input type=”button” value=”Test” onClick=”function()” />

8. JavaScript is “interpreted” – what does this imply?
Answer – JavaScript is not a compiler language; rather, it is an interpreted language. An interpreted language is one in which instructions are executed by implementations without first being translated into machine code. Computed programmes execute more quickly than interpreted ones. The compiled programme runs faster than the interpreted programme.

9. Explain the role of case sensitivity in JavaScript.
Answer – JavaScript is a case-sensitive language. JavaScript treated uppercase and lowercase in different manners, for example – Keywords, Variables, Function name or any other identifiers.

10. how to use multiple line comments in JavaScript.
Answer – Block comments in Javascript are multiline comments that begin with a forward slash and an asterisk (/*) and finish with an asterisk and a forward slash (*/).
/* Add your comment */

11. What is a variable?
Answer – A variable in programming is a value that can change based on external factors or data that has been supplied to the programme. A programme typically consists of data that it uses while running and instructions that tell the machine what to execute.

12. Differentiate between local and global scope of a variable.
Answer – A global variable is one that can be accessed from anywhere. A local variable is a variable that can be accessed in the function only.

13. What is a constant variable?
Answer – Any variable whose value is constant throughout your programme cannot be updated or changed at the run time. Constant variable is declared at the time of initialization.

14. What are the major primitive types?
Answer – There are 7 major type of primitive data types –
a. String
b. Number
c. Bigint
d. Boolean
e. Undefined
f. Symbol
g. Null

15. What are undeclared and undefined variables?
Answer – An undefined variable is one that has been declared but has no value. The term “undeclared variable” refers to a variable that is completely absent from the programme.

16. What is a string?
Answer – Any group of characters that a script interprets literally is known as a string. Strings include things like “hello world” and “LH01876HY,” .

17. What are two of the benefits of using variables?
Answer – Two benefits of using variables are –
a. Variables can store multiple types of data using data types.
b. Variable saves unused memory.

18. What the factors to be considered when naming the variable.
Answer – The naming rules for variable are –
a. The first character must be a letter or an underscore(_), or dollar sign ($).
b. JavaScript variable names are case sensitive.
c. There is no limit of length of the variable name.

19. Write any five valid variable names.
Answer – The five valid variable name are –
a. num
b. num2add
c. _hello
d. $hello
e. my_number

20. Write any five invalid variable names.
Answer – The five invalid variable name are –
a. total%
b. 2numadd
c. function
d. *num
e. var

21. What is the difference between null and undefined values?
Answer – A value that has been assigned is null. It means nothing. Undefined refers to a variable that has been declared but not yet defined.

22. What are composite data types?
Answer – When a data type declares several identical or dissimilar data under a single variable declaration, or when the data type includes multiple values grouped together, the data type is referred to as a composite data type. Example of composite data type is array. int a[ ] = {1,2,3,4,5};

23. What is an operator?
Answer – In computer programming, an operator is a symbol that often denotes an action or process. These symbols were modified from logic and mathematics. A specific value or operand can be manipulated by an operator.

24. What is the associativity of an operator?
Answer – The operator associativity has an impact on the evaluation of expressions as well. Associativity refers to the direction that the full phrase is evaluated (from right to left or from left to right).

25. What is an precedence of operator.
Answer – An operator’s precedence determines how “tightly” it binds two phrases together. Because the multiplication (“*”) operator has priority over the addition (“+”) operator, the result to the formula 1 + 5 * 3 is 16 and not 18, for instance. If necessary, parentheses can be used to enforce precedence.

26. What are the major types of operators supported by JavaScript?
Answer – The major types of operators supported by JavaScript are –
a. Arithmetic Operators
b. Comparison Operators
c. Logical Operators
d. Assignment Operators
e. Ternary Operators

27. What would be the result of 1+2+“3” in JavaScript?
Answer – Result will be 33

28. What is the difference in the outputs that you get when you use the following operators =; == ; and ===.
Answer –
a. The assignment operator equal to (=) changes the value of the expression on its right to that of the variable to the left of the equal sign.
b. A comparison operator called double equals (==) changes operands of the same type before comparison.
c. In JavaScript, the stringent equality comparison operator === (Triple equals) returns false for values that are not of the same type. With this operator, type casting is done for equality. It will give a false result if we compare 2 with “2” using the comparison operator ===.

29. Explain what you understand by Modulo operator.
Answer – The modulus operator, which operates between two accessible operands, is an addition to the JavaScript arithmetic operators. To obtain a result, it divides the supplied numerator by the supplied denominator. To put it another way, it results in an integer division remainder. As a result, the leftover amount is likewise always an integer. example 10%2 the result will be 5;

30. What is conditional operator?
Answer – Ternary operator is also known as conditional operator. The ternary operator (?:) is used to express a condition (it takes three operands). The first operand is implicitly changed to boolean by the conditional operator.

31. What is a dialog box?
Answer – The dialogue box is a graphical control element that looks like a small window and gives the user information and asks for a response. There are three types of dialogue boxes used by JavaScript: ALERT, PROMPT, and CONFIRM.

32. What is Window object?
Answer – All browsers support the window object. It symbolizes the window of the browser. All variables, functions, and objects that are global to JavaScript are immediately added as members of the window object. The window object’s characteristics include global variables. The window object’s methods are known as global functions.

33. What is alert() method?
Answer – The alert() method shows an alert box with an OK button and a message. When you want the user to get information, you utilise the alert() method.

34. What is prompt() method?
Answer – The user is prompted for input in a dialogue box by the prompt() method. If the user selects “OK,” the prompt() method returns the input value; otherwise, it returns null.

35. What is confirm method()?
Answer – A modal dialogue with an optional message and the buttons OK and Cancel is displayed using the confirm() method. If the user hits “OK,” it returns true; if not, it returns false. Until the box is closed, the user is unable to view other areas of the page.

36. What happens when a user clicks the cancel button of the prompt dialog box?
Answer – If the user clicks the Cancel button, prompt( ) returns null.

37. What is the difference between confirm and alert method?
Answer – If we want the user to receive the information, we utilize an alert box. If we want the user to confirm or approve something, we use the confirm box.

38. Create a JavaScript program that prompts the user for a phone number and then asks the user for confirmation.
Answer –

<html>
<script>
var phoneno;
phoneno=confirm("Please Confirm" + prompt("Enter Phone Number"));
</script>
</html>

39. Write a program to ask the user to input two values and then perform the arithmetic operation and display the result.

<html>
<script>
var num1,num2,sum;
num1=parseInt(prompt("Enter Number"));
num2=parseInt(prompt("Enter Number"));
sum=num1+num2;
document.write("Sum is " + sum);
</script>
</html>

Employability Skills Class 11 Notes

Employability Skills Class 11 MCQ

Employability Skills Class 11 Questions and Answers

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

GIMP Class 11 Questions and Answers

gimp class 11 questions and answers

Teachers and Examiners (CBSESkillEduction) collaborated to create the GIMP Class 11 Questions and Answers. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

GIMP Class 11 Questions and Answers

1. What does GIMP stand for?
Answer – GIMP Stands for GNU Image Manipulation Program

2. What is Gimp’s default graphics file format?
Answer – GIMP default graphics file format is XCF, short for eXperimental Computing Facility.

3. List five main components of GIMP environment.
Answer – The five main components of GIMP environment are – Toolbox window, Image window, Layers, Channels and Paths dialogs.

GIMP Class 11 Questions and Answers

4. What are Dockable Dialogues in GIMP?
Answer – GIMP’s dockable dialogues feature is a neat way to personalise your GIMP windows. Basically, dialogues are essentially collections of tool options. For instance, the Layers Dialog contains settings and choices for employing layers.

5. How a user can you make only the part of an image, transparent in GIMP?
Answer – To reduce opacity and increase transparency, click and drag the “Opacity” slider to the left at the top of the Layers toolbox.

6. What is the purpose of alpha channels in GIMP?
Answer – A grayscale image the same size as the layer that represents a layer’s transparency is called the alpha channel for that layer. The grey level, which has a value between 0 and 255, represents the Alpha value of each pixel. Areas of the layer may appear partially transparent thanks to an alpha channel.

GIMP Class 11 Questions and Answers

7. How can we create an outline around text in GIMP?
Answer –
Step 1 : Open image with transparent background
Step 2 : Go to the Layers panel and create a new layer with transprent background
Step 3 : Lower the new layer by dragging it beneath the image layer so that it becomes the background
Step 4 : Right-click the image layer and select ‘Alpha to Selection’. This will select and highlight the object on the transparent background with moving dotted lines.
Step 5 : Go to the ‘Select’ tab and click ‘Grow’. This tells GIMP how much to extend the boundaries of the selection beyond the image.
Step 6 : Set ‘Grow Selection by’ to 20px and click ‘OK’.

8. How do we merge an image from a file to the current image in GIMP?
Answer – Select “Merge Visible Layers” from the context menu by right-clicking the top layer in your “Layers” toolbar and pressing “Merge” when a pop-up box opens.

9. List steps to perform masking of images in GIMP.
Answer –
Step 1 : Right – Click on Layer
Step 2 : Click on Add Layer Mask
or
Layer –> Mask –> Add Layer Mask

GIMP Class 11 Questions and Answers

10. What is the purpose of stamp tool in GIMP?
Answer – The Clone tool in GIMP is represented by a stamp icon. This tool uses any of GIMP’s brushes to draw pixels sampled from a source image. By choosing settings from the toolbox menu, you may create a variety of intriguing effects in addition to using it as a standard stamping tool.

11. List the possible steps to create a polygon in GIMP.
Answer –
Step 1 : Select the rectangle select tool or Ellipse select tool from hte tools menu
Step 2 : Enable Expand from center from the tool options
Step 3 : Enable Fixed aspect ratio from the tool options
Step 4 : Enter an aspect ration of 1:1 into the textbox.
Step 5 : Drag the cursor and crate selection area.
Step 6 : Select the Bucket Fill tool
Step 7 : Fill the color

12. What is the purpose of Scale image in GIMP?
Answer – the Scale Image command can physically increase or decrease the size of the image. It resizes the canvas in accordance with the size change in the image’s contents.

GIMP Class 11 Questions and Answers

13. How can you change the brightness of an image in GIMP?
Answer – A new method of using this tool has been included in GIMP 2.4: by clicking inside the image and dragging while holding down the left mouse button. Brightness and contrast are adjusted by moving the mouse vertically or horizontally.

14. List the filters that may aid in blurring an image in GIMP.
Answer – The filter that may aid in blurring an image in GIMP are –
a. Focus Blur.
b. Gaussian Blur.
c. Lens Blur.
d. Mean curvature Blur.
e. Median Blur.
f. Pixelize.
g. Selective Gaussian Blur.
h. Variable Blur.

Employability Skills Class 11 Notes

Employability Skills Class 11 MCQ

Employability Skills Class 11 Questions and Answers

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

GIMP Class 11 MCQ Questions

gimp class 11 mcq questions

Teachers and Examiners (CBSESkillEduction) collaborated to create the GIMP Class 11 MCQ Questions. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

GIMP Class 11 MCQ Questions

1. GIMP is an acronym for ______________.
a. GNU Image Manipulation Program 
b. GNU Image Maintain Program
c. GNU Image More Program
d. None of the above

Show Answer ⟶
a. GNU Image Manipulation Program

2. GIMP is a freely distributed, versatile ____________ software package with a customizable Interface.
a. Image manipulation 
b. Document manipulation
c. Video manipulation
d. Audio manipulation

Show Answer ⟶
a. Image manipulation

3. GIMP can be installed in __________ operating system.
a. Windows
b. Linux
c. Both a) and b) 
d. None of the above

Show Answer ⟶
c. Both a) and b)

4. GIMP supports various file formats including ________.
a. .gif & .jpeg
b. .png
c. .tiff
d. All of the above 

Show Answer ⟶
d. All of the above

GIMP Class 11 MCQ Questions

5. GIMP is a full suite of painting tools including a variety of __________.
a. Brushes
b. Pencil
c. Both a) and b) 
d. None of the above

Show Answer ⟶
c. Both a) and b)

6. GIMP has selection tools like ___________.
a. Rectangle & Eclipse
b. Free & Lasso
c. Fuzzy
d. All of the above 

Show Answer ⟶
d. All of the above

7. GIMP has transformations tools like ____________.
a. Rotate
b. Flip
c. Scale and shear
d. All of the above 

Show Answer ⟶
d. All of the above

8. GIMP also supports a variety of Filters for image _____________ in appearance.
a. Enhancement
b. Modification
c. Both a) and b) 
d. None of the above

Show Answer ⟶
c. Both a) and b)

9. GIMP has the functionality of __________.
a. Layers
b. Channels
c. Both a) and b) 
d. None of the above

Show Answer ⟶
c. Both a) and b)

GIMP Class 11 MCQ Questions

10. ________ acts a slider to change the transparency of the selected layer.
a. Opacity 
b. Hidden
c. Mode
d. None of the above

Show Answer ⟶
a. Opacity

11. _________ allows changing appearance (Normal, Dissolve, Darken, Burn etc.) of the selected layer.
a. Opacity
b. Hidden
c. Mode 
d. None of the above

Show Answer ⟶
c. Mode

12. ________ adds blended shadows, highlights, and backgrounds in image.
a. Obviation
b. Chalk
c. Blended 
d. Alien Neon

Show Answer ⟶
c. Blended

13. ___________ creates an animation via an effect which appears as if the stone was thrown on the image.
a. Blend
b. Rippling
c. Spinning Globe
d. Waves 

Show Answer ⟶
d. Waves

14. _________ tools support the use of images in Web pages.
a. Web Method
b. Web Filters 
c. Web Type
d. None of the above

Show Answer ⟶
b. Web Filters

GIMP Class 11 MCQ Questions

15. _________ filter provides borders to the selected image.
a. MAP Filters
b. Render
c. Decor Filters 
d. None of the above

Show Answer ⟶
c. Decor Filters

16. _________ filters enhance the image with impressionist work of art such as sketches, paintings, making cartoons etc.
a. MAP Filters
b. Artistic Filters 
c. Décor Filters
d. None of the above

Show Answer ⟶
b. Artistic Filters

17. __________ groups different images of the same size to a single image.
a. MAP Filters
b. Artistic Filters
c. Décor Filters
d. Combine Filter 

Show Answer ⟶
d. Combine Filter

18. _________GIMP also renders edge-detecting filters for searching boundaries between various colors of an image based on gradient calculus methods.
a. Edge Detection Filters 
b. Combine Filter
c. MAP Filter
d. None of the above

Show Answer ⟶
a. Edge Detection Filters

19. _________ add noisy pixels/disturbance to the current image. “HSV noise” creates disturbances in hue, saturation or luminosity value of an image under consideration.
a. Edge Detection Filters
b. Noise Filters 
c. MAP Filter
d. None of the above

Show Answer ⟶
b. Noise Filters

GIMP Class 11 MCQ Questions

20. __________ is useful for correction of sharpness in digitized images by accentuating edges and any kind of noise.
a. Red Eye Removal
b. Sharpen 
c. Non – Linear
d. Destripe

Show Answer ⟶
b. Sharpen

21. __________ tool allows you to apply moving, rotating, shearing, perspective and scaling corrections using handles placed on canvas.
a. Handle Transformation Tool 
b. Change the perspective tool
c. Unified Transform Tool
d. None of the above

Show Answer ⟶
a. Handle Transformation Tool

Employability Skills Class 11 Notes

Employability Skills Class 11 MCQ

Employability Skills Class 11 Questions and Answers

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

Web Development using HTML and CSS Questions and Answers

web development using html and css questions and answers

Teachers and Examiners (CBSESkillEduction) collaborated to create the Web Development using HTML and CSS Questions and Answers. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

Web Development using HTML and CSS Questions and Answers

1. What are the pre requisites to learn the basics of HTML?
Answer – The pre requisites to learn the basics of HTML first you require a text editor, such as Notepad and an Internet browser, such as Internet Explorer, Netscape Navigator or chrome etc.

2. How do you define a HTML file?
Answer – The actual documents are plain text files with unique “tags” or codes that a web browser uses to understand and display data on your computer screen.
a. HTML stands for Hyper Text Markup Language
b. An HTML file is a text file containing small markup tags
c. The markup tags tell the Web browser how to display the page
d. An HTML file must have an htm or html file extension

Web Development using HTML and CSS Questions and Answers

3. What is the tag for making a comment?
Answer – A comment in HTML is text that is enclosed in the <!—   —> tags. By using this technique, you can inform a browser that some elements are comments and shouldn’t be displayed on the front end. You can make notes in the comments tag to remind yourself where you left off throughout the building process.

4. What dose <cite> and <pre> tag mean?
Answer – Preformatted text is defined by the <pre> tag. A fixed-width font is used to display text in a< pre> element. The title of a creative work is defined by the <cite> tag (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.).

5. What is the syntax to define background color in HTML?
Answer – <body bgcolor=“#000000”>
<body bgcolor=“rgb(0,0,0)”>
<body bgcolor=“black”>

Web Development using HTML and CSS Questions and Answers

6. Explain the procedure to view source code in Mozilla Firefox, Google Chrome &Internet Explorer?
Answer – Open Mozilla Firefox >> Right click on webpage >> Click on View Source code.

7. List out any three popular web browsers?
Answer – Most popular web browsers are –
a. Chrome
b. Mozilla Firefox
c. Safari
d. Edge

8. What do you mean by an anchor tag?
Answer – A hyperlink is defined by the <a> tag and is used to connect pages. The href attribute of the< a> element, which denotes the location of the link.

Web Development using HTML and CSS Questions and Answers

9. How do you insert an image and create a table in the HTML page?
Answer – Any section of an HTML page can easily contain images. Use the <img> elements to insert images into HTML pages. The <table> tag is used to generate HTML tables. Table rows are created using the <tr> tag, while data column are created using the <td> tag.

10. What is the tag to insert a single line break?
Answer – To insert a single line break you can use <br> tag.

Web Development using HTML and CSS Questions and Answers

11. What does W3C stand for?
Answer – The World Wide Web Consortium (W3C) is an international community that works together for the long-term growth of the Web.

12. Why do we use CSS? What are its basic advantages?
Answer – The style and feel of a web page is handled by CSS. The colour of the text, the font style, the distance between paragraphs, the size and arrangement of columns, etc. may all be altered using CSS.
Advantages of CSS are –
a. CSS saves time
b. Easy maintenance
c. Global web standards
d. Platform Independence

Web Development using HTML and CSS Questions and Answers

13. What are the ways in which you can use CSS in your HTML document?
Answer – You can use CSS in three ways in your HTML document:
a. External Style Sheet – Define style sheet rules in a separate .css file and then include that file in your HTML document using HTML <link> tag.
b. Internal Style Sheet – Define style sheet rules in header section of the HTML document using <style> tag.
c. Inline Style Sheet – Define style sheet rules directly along with the HTML elements using style attribute.

14. What are inline style sheets?
Answer – Define style sheet rules directly along with the HTML elements using style attribute.

15. How are internal style sheets used?
Answer – A style for a single HTML page is established using an internal CSS. A <style> element in the <head> section of an HTML page contains the definition of an internal CSS.

Web Development using HTML and CSS Questions and Answers

16. Does the use of CSS saves time?
Answer – When writing CSS, you can reuse the same sheet across different HTML pages. Each HTML element has a style that you can choose and use on as many different Web sites as you like. Pages load more quickly if you use CSS instead of manually writing HTML tag attributes each time.

17. How are external style sheets used?
Answer – An external style sheet is employed to apply a rule to numerous pages. A link in the webpage’s head section can be used to retrieve an external style sheet, which is a different CSS file. The same link can be used by several websites to access the stylesheet.

Web Development using HTML and CSS Questions and Answers

18. Why are universal and type selectors used?
Answer – The CSS universal selectors are represented by the asterisk (*). It can be applied to choose any kind of HTML page element. To choose a child object, a selector can alternatively be used after the asterisk. When we want to select every element on the page. Type selector is also commonly referred to as a tag name selector or an element selector. The selectors span, em, and strong were used in the type selector.

19. What do we do when we have to apply style rule to a particular element only when it lies inside a particular element?
Answer – Descendant Selectors is used to aplay particular element only when it lies inside a particular element.

20. Explain the id selector.
Answer – The id selector is used to select only element which have a specific id. Id selector must start with a pound sign (#).

Web Development using HTML and CSS Questions and Answers

21.Can we define multiple style rules?
Answer – By grouping CSS selectors, you may apply the same styles to a variety of element without having to repeat them across your stylesheet.

22. What are the rules to override any style sheet?
Answer –
Any inline stylesheet takes the highest priority. …
Any rule defined in external style sheet file takes the lowest priority, and rules defined in this file will be applied only when above two rules are not applicable.

Web Development using HTML and CSS Questions and Answers

23. How are the color codes represented in a style sheet?
Answer – Hexadecimal (or hex) values are the most used way to express colours in CSS. Actually, hex values are only another way to express RGB values. Six hexadecimal numerals are used in place of three values between 0 and 255.

24. How do we select a background attachment?
Answer – You can indicate whether the background picture is fixed or scrolls with the rest of the page in the browser window using the background-attachment attribute. The three values for this property are scroll, fixed, and local.

Web Development using HTML and CSS Questions and Answers

25. Can we set the text direction? If yes then how?
Answer – Yes we can. To indicate which direction the text should run, the CSS direction property is used in conjunction with the unicode-bidi property (i.e. from left to right or right to left).

26. Is RGB() property supported by all browsers?
Answer – Not all browser support but maximum browser support RGB().

Employability Skills Class 11 Notes

Employability Skills Class 11 MCQ

Employability Skills Class 11 Questions and Answers

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

Web Designing with HTML and CSS MCQ Questions

web designing with html and css mcq questions

Teachers and Examiners (CBSESkillEduction) collaborated to create the Web Designing with HTML and CSS MCQ Questions. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

Web Designing with HTML and CSS MCQ Questions

1. A ____________ is a collection of web pages which contains the information about the particular organization or institution or any product.
a. Website
b. Webpage
c. Home page
d. None of the above

Show Answer ⟶
a. Website

2. The most common programming languages used to develop websites are _________.
a. HTML
b. JavaScript
c. Cascading Style Sheet
d. All of the above

Show Answer ⟶
d. All of the above

3. What are the different types of websites?
a. Hyper & Cascading website
b. Static & Dynamic website
c. Single & Multiple website
d. All of the above

Show Answer ⟶
b. Static & Dynamic website

4. HTML Stands for __________.
a. Human Terminology Language
b. Hyper Text Markup Language
c. Hyper Terminology Language
d. None of the above

Show Answer ⟶
b. Hyper Text Markup Language

Web Designing with HTML and CSS MCQ Questions

5. _________ is the default windows text editor.
a. Notepad
b. Notepad++
c. Sublime Text
d. None of the above

Show Answer ⟶
a. Notepad

6. What do you mean by HTML?
a. HTML stands for Hyper Text Markup Language
b. An HTML file is a text file containing small markup tags
c. The markup tags tell the web browser how to display the page
d. All of the above

Show Answer ⟶
d. All of the above

7. An HTML file must have an ________ extension.
a. .htm
b. .html
c. Both a) and b)
d. None of the above

Show Answer ⟶
c. Both a) and b)

8. The first tag of an HTML document is __________.
a. <html>
b. <head>
c. <title>
d. <body>

Show Answer ⟶
a.

9. The last tag of an HTML document is __________.
a. </html>
b. </head>
c. </title>
d. </body>

Show Answer ⟶
a.

Web Designing with HTML and CSS MCQ Questions

10. The text between the <b> and </b> tags will be displayed as a _________.
a. Italic
b. Bold
c. Underline
d. None of the above

Show Answer ⟶
b. Bold

11. What are the different types of heading tags in HTML ___________.
a. <h0> to <h10>
b. <h1> to <h7>
c. <h1> to <h6>
d. None of the above

Show Answer ⟶
c.

12. Largest heading tag in HTML are __________.
a. <h6>
b. <h5>
c. <h2>
d. <h1>

Show Answer ⟶
d.

13. Smallest heading tag in HTML are _________.
a. <h6>
b. <h5>
c. <h2>
d. <h1>

Show Answer ⟶
a.

14. Paragraphs are defined with the ________ tag.
a. <pp>
b. <p>
c. <para>
d. None of the above

Show Answer ⟶
c.

Web Designing with HTML and CSS MCQ Questions

15. The ________ tag is used when you want to start a new line in an HTML program.
a. <break>
b. <brk>
c. <br>
d. None of the above

Show Answer ⟶
c.

16. The ________ element is used for horizontal rules that act as dividers between sections.
a. <hrn>
b. <hr>
c. <p>
d. None of the above

Show Answer ⟶
b.

17. _________ tags are used to insert comments in the HTML document.
a. ^– –^
b. /* — */
c. <!– –>
d. None of the above

Show Answer ⟶
c.

Web Designing with HTML and CSS MCQ Questions

18. Comments can be placed ____________.
a. Anywhere in the document
b. Only in the top of document
c. Only between of the document
d. None of the above

Show Answer ⟶
a. Anywhere in the document

19. _________ tag is used to define a variable.
a. <variable>
b. <var>
c. <v>
d. None of the above

Show Answer ⟶
b.

Web Designing with HTML and CSS MCQ Questions

20. Which tag is used to define teletype text.
a. <pre>
b. <dfn>
c. <tt>
d. None of the above

Show Answer ⟶
c.

21. Which tag is used to define superscript in an HTML document.
a. <sup>
b. <sub>
c. <del>
d. <ins>

Show Answer ⟶
b.

Web Designing with HTML and CSS MCQ Questions

22. Which tag is used to define subscripts in HTML documents.
a. <sup>
b. <sub>
c. <del>
d. <ins>

Show Answer ⟶
a.

23. Which tag is used to define computer code in HTML.
a. <ccode>
b. <dfn>
c. <code>
d. None of the above

Show Answer ⟶
c.

24. _________ tag is used to define big text in HTML documents.
a. <b>
b. <big>
c. <biggest>
d. None of the above

Show Answer ⟶
b.

Web Designing with HTML and CSS MCQ Questions

25. _________ tag is used to define small text in HTML documents.
a. <s>
b. <smallest>
c. <small>
d. None of the above

Show Answer ⟶
c.

26. Some characters have a special meaning in HTML, like __________.
a. <
b. >
c. &
d. All of the above

Show Answer ⟶
d. All of the above

28. If you want to write “&” in an HTML document what entity name should be used __________.
a. &it;
b.&gt;
c. &amp;
d. &quot;

Show Answer ⟶
c.

29. The ________ attribute specifies a background-color for an HTML page.
a. background
b. bgcolor
c. backgroundcolor
d. None of the above

Show Answer ⟶
b. bgcolor

Web Designing with HTML and CSS MCQ Questions

30. Which one is the correct syntax for declaring color in an HTML background.
a. <body bgcolor=“#000000”>
b. <body bgcolor=“rgb(0,0,0)”>
c. <body bgcolor=“black”>
d. All of the above

Show Answer ⟶
d. All of the above

31. The _________ attribute can also specify a background-image for an HTML page.
a. background
b. bgimage
c. backgroundimage
d. None of the above

Show Answer ⟶
a. background

32. Which one is the correct syntax for declaring background in the HTML body.
a. <body background=”clouds.gif”>
b. <body image=”clouds.gif”>
c. <body bgimage=”clouds.gif”>
d. <body backgroundimage=”clouds.gif”>

Show Answer ⟶
a.

33. W3C stands for _________.
a. World Wide Web Consortium
b. World Web Consortium
c. World Wide Consortium
d. None of the above

Show Answer ⟶
a. World Wide Web Consortium

34. Web Pages in a website can be linked with each other with the help of ________tags.
a. Linking tag
b. Anchor tag
c. Img tag
d. None of the above

Show Answer ⟶
b. Anchor tag

Web Designing with HTML and CSS MCQ Questions

35. How many types of linking in HTML _________.
a. Outer link and Inner link
b. Grouped link and Ungrouped link
c. Internal link and External link
d. None of the above

Show Answer ⟶
c. Internal link and External link

36. A web page is linked within the same web page. It is done by using _________.
a. Internal Link
b. External Link
c. Outer Link
d. Inner Link

Show Answer ⟶
a. Internal Link

37. To create an email link, you can use the _______ tag in an HTML document.
a. helpdesk
b. mailto
c. email
d. None of the above

Show Answer ⟶
b. mailto

38. Which of the following is an empty tag.
a. <img>
b. <br>
c. <hr>
d. All of the above

Show Answer ⟶
d. All of the above

39. Which tag is used to insert an image in an HTML document.
a. <scr image=””>
b. <image scr=””>
c. <img scr=””>
d. All of the above

Show Answer ⟶
c.

Web Designing with HTML and CSS MCQ Questions

40. In HTML tables are defined with the help of _______ tag.
a. <img>
b. <Newtable>
c. <table>
d. None of the above

Show Answer ⟶
c.

41. To display a table with borders, you will use the ________ attribute.
a. Cell
b. Border
c. Box
d. Square

Show Answer ⟶
b. Border

42. To insert an audio file in an HTML document, which tag is responsible.
a. <audio>
b. <mp3>
c. <song>
d. None of the above

Show Answer ⟶
a.

43. To insert a Video file in an HTML document, which tag is responsible.
a. <MP4>
b. <movie>
c. <video>
d. None of the above

Show Answer ⟶
c.

44. Which of the following attributes used in a <audio> tag.
a. Src
b. Controls
c. Autoplay & loop
d. All of the above

Show Answer ⟶
d. All of the above

Web Designing with HTML and CSS MCQ Questions

45. Which of the following attributes used in a <video> tag.
a. Height & Width
b. Controls & Autoplay
c. Src
d. All of the above

Show Answer ⟶
d. All of the above

46. _________ tag allows multiple HTML documents to be displayed as independent Windows within one browser window.
a. <iframe>
b. <frame>
c. <insert>
d. None of the above

Show Answer ⟶
a.

47. CSS Stands for ____________.
a. Common Style Sheet
b. Cascading Style Sheet
c. Creative Style Sheet
d. None of the above

Show Answer ⟶
b. Cascading Style Sheet

48. Which of the following options you will consider as advantages of CSS.
a. CSS Save time
b. Page load faster
c. Multiple Device compatibility
d. All of the above

Show Answer ⟶
d. All of the above

49. ___________ style sheet defines rules in a separate .css file and then include that file in your HTML document using HTML <link> tag.
a. Internal Style Sheet
b. External Style Sheet
c. Inline Style Sheet
d. None of the above

Show Answer ⟶
b. External Style Sheet

Web Designing with HTML and CSS MCQ Questions

50. ___________ style sheet defines rules in the header section of the HTML document using <style> tag.
a. Internal Style Sheet
b. External Style Sheet
c. Inline Style Sheet
d. None of the above

Show Answer ⟶
a. Internal Style Sheet

51. __________ style sheet defines rules directly along with the HTML elements using style attributes.
a. Internal Style Sheet
b. External Style Sheet
c. Inline Style Sheet
d. None of the above

Show Answer ⟶
c. Inline Style Sheet

52. If you need to use your style sheet to various pages then which style sheet you will recommend.
a. Internal Style Sheet
b. External Style Sheet
c. Inline Style Sheet
d. None of the above

Show Answer ⟶
b. External Style Sheet

53. What is the extension of the CSS file?
a. .CSSP
b. .C
c. CSS
d. None of the above

Show Answer ⟶
c. CSS

54. Which of the following is the correct method for declaring a style sheet in the HTML document.
a. <style> </style>
b. <style type=”text/css”> </style>
c. Both a) and b)
d. None of the above

Show Answer ⟶
c. Both a) and b)

Web Designing with HTML and CSS MCQ Questions

55. Style rules are made of three different parts, Select the appropriate option.
a. Selector, Property, Value
b. Style, Property, Value
c. Style, Proper, Value
d. None of the above

Show Answer ⟶
a. Selector, Property, Value

56. Suppose you want to apply a style rule to a particular element only when it lies inside a particular element, Which style you will consider.
a. Descendant Selectors
b. Class Selectors
c. ID Selectors
d. Child Selector

Show Answer ⟶
a. Descendant Selectors

57. If you want to apply a style in the “INPUT TEXT”, Which style you will consider.
a. Descendant Selectors
b. Attribute Selectors
c. ID Selectors
d. Child Selector

Show Answer ⟶
b. Attribute Selectors

57. If you want to apply the same style in multiple elements, which one of the style rules is best for doing the same.
a. Grouping Selectors
b. Class Selectors
c. ID Selectors
d. Child Selector

Show Answer ⟶
a. Grouping Selectors

58. The Class selectors can be defined as _______.
a. .NameofSelector
b. #NameofSelector
c. $NameofSelector
d. None of the above

Show Answer ⟶
a. .NameofSelector

59. The ID selectors can be defined as _________.
a. .NameofSelector
b. #NameofSelector
c. $NameofSelector
d. None of the above

Show Answer ⟶
b. #NameofSelector

Web Designing with HTML and CSS MCQ Questions

60. Which one is the correct way for adding comments in CSS?
a. /* …. */
b. / …. /
c. /& … &/
d. None of the above

Show Answer ⟶
a.

61. In RGB Values color code can be defined between _________.
a. 0 to 300
b. 0 to 255
c. 0 to 64
d. 0 to 128

Show Answer ⟶
b. 0 to 255

62. Which one is the correct syntax for declaring background images in HTML using CSS.
a. background:url();
b. background-image();
c. background-image:url();
d. None of the above

Show Answer ⟶
c. background-image:url();

63. Which one is the correct syntax to declare font family in HTML using CSS.
a. font:fontname;
b. font-family:fontname;
c. set-font:fontname;
d. None of the above

Show Answer ⟶
b. font-family:fontname;

64. Which one is the correct method for declaring font style in HTML using CSS.
a. font-style:italic;
b. set-font:italic;
c. font:italic;
d. None of the above

Show Answer ⟶
a. font-style:italic;

Employability Skills Class 11 Notes

Employability Skills Class 11 MCQ

Employability Skills Class 11 Questions and Answers

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

Network and Internet Class 11 Questions and Answers

network and internet class 11 questions and answers

Teachers and Examiners (CBSESkillEduction) collaborated to create the Network and Internet Class 11 Questions and Answers. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

Network and Internet Class 11 Questions and Answers

1. What is a network? Give any two uses of having a network in your school computer lab.
Answer – Computer networking is the term for a network of connected computers that may communicate and share resources. These networked devices transmit data through wireless or physical technologies using a set of guidelines known as communications protocols.

The two uses of having a network in school computer lab are –
a. Instead of using floppy discs or Zip drives, network file sharing across PCs gives you greater flexibility. You can exchange documents, music, and images over a network to save copies of your important material on different computers.
b. Students can access the internet simultaneously over a computer network by sharing internet access.

2. Mention any two disadvantages of a network.
Answer –
a. It can be expensive to buy the file servers and network cabling.
b. Managing a large network is complicated

Network and Internet Class 11 Questions and Answers

3. What are the requirements for setting up a network?
Answer – The requirements for setting up a network are –
a. At least two computer – Server or Client workstation
b. Communication medium like Twisted Pair Wire, Fiber Optical Cable or any wireless signal etc.
c. Operating System which support Network

4. How is a dedicated server different from a non dedicated server?
Answer –
a. Dedicated Servers – These are generally used on big network installations where one computer is reserved for the server’s job. It helps all nodes access data, software and hardware resources.
b. Non dedicated servers – In small networks, a workstation can double up as a server. These servers are known as non dedicated servers. The small networks using such a server are known as Peer to Peer networks.

5. Define a channel. Name the three categories of communication channels.
Answer – A communication channel is a medium that is used in the transmission of a message from one point to another. In simple terms we can say that it is a pathway over which data is transferred between remote devices. Examples of three categories of communication channels are optical fiber, coaxial cable or twisted pair wire.

Network and Internet Class 11 Questions and Answers

6. What do you mean by bandwidth and DTR?
Answer –
a. Bandwidth – The frequency range that is available for data transmission in electronic communication is referred to as the bandwidth. It is measured as the difference between the highest and lowest frequencies in Hertz (Hz).

b. DTR – The amount of digital data transferred through a network in a predetermined amount of time is known as the data transfer rate (DTR). As previously studied, the data transfer rate increases with the bandwidth of a particular medium.

7. Two companies in different states wanted to transfer information. Which type of network will be used to implement the same?
Answer – They have to use Wide Area Network

Network and Internet Class 11 Questions and Answers

8. Two schools in the same city wanted to transfer e-learning information. Which type of network will be used to implement the same?
Answer – Wide Area Netware

9. Two teachers in the same school sitting in different labs wanted to transfer information. Which type of network will be used to implement the same?
Answer – Local Area Network

10. What do you mean by a transmission medium? Differentiate between guided and unguided transmission media.
Answer – A transmission medium refers to the channel of transmission through which data transmitted from one node to another in the form of signal.
a. Guided medium – Physical conductors like twisted pairs, coaxial cable, and fiber optics are referred to by this phrase. The signal travels as voltage and current in coaxial and twisted pair cable, but it travels as light in optical fiber.

b. Unguided medium – Electromagnetic waves, which are used by the unguided medium, don’t need a physical conductor to work. Microwave, radio wave, and infrared are a few examples of unguided media.

Network and Internet Class 11 Questions and Answers

11. Define the term topology.
Answer – The network’s topology describes how all of the components are connected to one another. There are two types of topology – Broadcast and point-to-point topology.

12. List any two advantages and any two disadvantages of Star topology.
Answer –
Advantage of Star topology
a. if one cable or device fails then all the others will still work
b. Easy to detect fault
c. There are no network delays when adding or removing devices.
d. Each device just needs one port to connect to the hub.

Disadvantage of Star topology
a. Requires more cable than a bus or ring topology
b. More expensive than the bus or ring topology
c. If Switch will not work than network will not work
d. Extra hardware is required like hubs or switch

Network and Internet Class 11 Questions and Answers

13. How is Tree Topology different from Bus topology?
Answer –
Tree Topology – It is a hierarchical topology in which each branch may have one or more fundamental topologies, such as the star, ring, and bus.

Bus Topology – All of the devices in a bus topology network are connected to a single cable, which is referred to as the network’s backbone.

14. Identify the type of topology from the following.
a. Each node is connected with the help of a single cable.
b. Each node is connected with the help of independent cable with central switching.
Answer –
a. Bus Topology
b. Star Topology

Network and Internet Class 11 Questions and Answers

15. Ms. Anjali discovered that the communication between her center and the primary block of the school is extremely slow and signals drop quite frequently. The distance between these two blocks is 140 meters.
a. Name the type of network.
b. Name the device which may be used for smooth communication.
Answer –
a. Local Area Network
b. Repeater

16. ABC International School is planning to connect all computers, each spread over a distance of 50 meters. Suggest an economic cable type having high speed data transfer to connect these computers.
Answer – Fiber Optical Cable

17. Sahil wants to transfer data across two continents at very high speed. Write the name of the transmission medium that can be used to do the same. Write the type of network also.
Answer – Transmission medium is Optical Fiber Cable and Network is WAN

Network and Internet Class 11 Questions and Answers

18. Mayank wants to transfer data within a city at very high speed. Write the name of the wired transmission medium that he should use. Write the type of network also.
Answer – Transmission medium is Optical Fiber Cable and Network is MAN

19. Mr. Akash wants to send/receive email through the internet. Which protocol will be used for this purpose?
Answer – SMTP (Simple Mail Transfer Protocol)

20. Answer the following questions in the context of a computer lab with 100 computers.
a. Which device is used to connect all computers inside the lab?
b. Which device is used to connect all computers to the internet using telephone wire?
Answer –
a. Hub or Switch
b. Modem

Network and Internet Class 11 Questions and Answers

21. Name the device that establishes an intelligent connection between a local network and external network with completely different structures.
Answer – A Bridge is a device that creates an intelligent link between a local network and an external network with totally unrelated structures.

Note – Refer to NCERT book page no 13

22. Name the network device that works like a bridge to establish connection between two networks but it can also handle networks with different protocols.
Answer – Gateway is just like a bridge and capable of handling networks with different protocols.

Note – Refer to NCERT book page no 14

23.Neha wants to upload and download files from/to a remote internal server. Write the name of the relevant communication protocol, which will let her do the same.
Answer – File Transfer Protocols are used to download files from remote internal servers.

Network and Internet Class 11 Questions and Answers

24. Meha wants to upload hypertext documents on the internet. Write the name of protocol, which will let her do the same.
Answer – HTTP or HTTPS helps to upload hypertext documents on the internet.

25. This protocol is used for communication between two personal computers using a serial interface and connected by a phone line. Write the name of the protocol.
Answer – PPP (Point-to-Point Protocol) is a protocol for serial interface communication between two computers.

26. This protocol is used to transfer email over the internet. What is the name of the protocol?
Answer – Email messages are transmitted over the Internet using the Simple Mail Transfer Protocol (SMTP). Most email clients utilize this protocol to send messages to the server, and servers also use it to transfer messages to their intended recipients.

27. This protocol is used to implement remote login. What is the name of the protocol?
Answer – Telnet is the main internet protocol for creating a connection with a remote machine. It allows you to connect to remote computers (called remote hosts) over a TCP/IP network (such as the Internet).

Network and Internet Class 11 Questions and Answers

28. This protocol is used for chatting between two groups or between two individuals. Write the name of the protocol.
Answer – IRC (Internet Relay Chat) protocol is used for chatting. It provides chatting between a group or between two individuals.

29. This protocol is used to transfer voice using packet switched networks. Write the name of the protocol.
Answer – VoIP (Voice Over Internet Protocol) It enables the transfer of voice using a packet switched network rather than using a public switched telephone network.

30. Explain Remote Access Protocol.
Answer – Telnet is the main internet protocol for creating a connection with a remote machine. It allows you to connect to remote computers (called remote hosts) over a TCP/IP network (such as the Internet).

Network and Internet Class 11 Questions and Answers

31. Why do we need VoIP protocol?
Answer – VoIP (Voice Over Internet Protocol) helps to make voice calls using a broadband Internet Connection. This method of making phone calls is much cheaper than the conventional way because the service of Telecommunication Company is not used.

32. Differentiate between FTP and HTTP.
Answer – HTTP is designed for transferring a hypertext among two or more systems. HTML tags are used for creating links. These links may be in any form like text or images. FTP allows users to transfer files from one machine to another. Types of files may include program files, multimedia files, text files, and documents, etc.

33. Differentiate between VoIP and IRC.
Answer – By using VOIP , phone calls can be done using standard internet connection. This method of making phone calls is much cheaper. IRC protocol is used for chatting. It provides chatting between a group or between two individuals.

Network and Internet Class 11 Questions and Answers

34. Explain the three types of web architecture
Answer – Web Architecture can be defined as the conceptual structure of the internet. The WWW or internet is a constantly changing medium that enables communication between different users and the technical interaction between different systems and subsystems.

a. Client-server model – Web consisted of a two-tiered architecture: clients and servers. Clients and
servers shared the tasks and services that the system was supposed to perform. Example – Web server

b. Three-tier model – Three-tier models include an application logic between the client and the server, which
handles the data processing and allows a certain degree of interaction. Example – Data servers storing and retrieving data logically.

c. Service-oriented architectures (SOA) – With SOAs, business processes can be automated by the involved systems communicating with one another – partly without human intervention – and performing certain tasks. Example – e-commerce, online banking, e-learning etc.

Network and Internet Class 11 Questions and Answers

35. Differentiate between IP address and MAC address.
Answer – The IP address of a device is important for determining a network’s connection (using which the device is connecting to the network). On the other hand, the MAC Address guarantees the computer device’s exact location. It enables us to uniquely identify a certain device on the accessible network.

36. Differentiate between Worm and Virus
Answer – The main distinction between a worm and a virus is that worms are standalone hostile programmes that may self-replicate and spread after they have infiltrated the system, whereas viruses must be activated by their host.

37. Explain the significance of the IT Act.
Answer – IT Act 2000 named Information Technology Amendment Act,2008 was introduced. The act also defines offenses and penalties for cyber-crime. Cyber police are responsible for detecting such crimes and taking the necessary measures against it according to the IT Act.
a. Tampering with computer source documents – Section 65
b. Hacking -Section 66
c. Publishing of information which is obscene in electronic form -Section 67

Network and Internet Class 11 Questions and Answers

38. Explain the following terms: Patent Copyright Trademark
Answer –
a. Patent – The word “patent” refers to a particular product created by an individual. For a set amount of time, the designer is granted sole ownership of the patent. The owner can prevent others from creating, using, or selling the product design with the use of the patent right.

b. Trademark – Any word, phrase, symbol, design, or combination of these that distinguishes your products or services might be considered a trademark. Customers use it to recognize you in the marketplace and set you apart from your rivals. Both trademarks and service marks are included under the umbrella term “trademark.”

c. Copyright – A written document is referred to as having copyright. The violation of copyrights may result in legal action. The following type of work is eligible for copyright protection. written works any accompanying words for musical works

39. Differentiate between hacking and cracking
Answer – Hackers utilize their own legitimate tools to assess network stability, create security, and defend a business from online dangers. The tools used by Crackers are not their own. They utilize other people’s tools to commit crimes, damage systems, and compromise privacy.

Network and Internet Class 11 Questions and Answers

40. Rohan wants to prevent unauthorized access to/from his company’s local area network. Write the name of the system, which he should install to do the same.
Answer – To prevent from unauthorized access rohan should install Firewall

41. When the user browses a website, the web server sends a text file to the web browser. What is the name of this?
Answer – As a user navigates a website, the web server transmits a text file to the web browser in the form of cookies.

42. It is defined as a crime in which a computer and internet is used in an illegitimate way to harm the user. What is the name of this crime?
Answer – Cybercrime

43. A person who gains unauthorized access to a computer with the intention of causing damage. What is the name of this crime?
Answer – Hackers

Employability Skills Class 11 Notes

Employability Skills Class 11 MCQ

Employability Skills Class 11 Questions and Answers

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

Network and Internet Class 11 MCQ

network and internet class 11 mcq

Teachers and Examiners (CBSESkillEduction) collaborated to create the Network and Internet Class 11 MCQ. All the important Information are taken from the NCERT Textbook Web Application (803) class 11.

Network and Internet Class 11 MCQ

1. ________ is a collection of independent computers that communicate with one another over a shared network medium.
a. Network 
b. Connection
c. Computer
d. None of the above

Show Answer ⟶
a. Network

2. ________ is a computer that facilitates sharing of data, software and hardware resources on the network.
a. Computer
b. Server 
c. Hub
d. Router

Show Answer ⟶
b. Server

3. _________ is a device that helps to establish communication between the server and workstations.
a. Network Interface Unit 
b. Network Interconnection Unit
c. Network Medium Unit
d. None of the above

Show Answer ⟶
a. Network Interface Unit

4. ________ is a technique in which a dedicated and complete physical connection is established between two nodes for communication.
a. Packet Switching
b. Circuit Switching 
c. Both a) and b)
d. None of the above

Show Answer ⟶
b. Circuit Switching

Network and Internet Class 11 MCQ

5. ________ is a switching technique in which packets are routed between nodes over data links shared with other traffic.
a. Packet Switching
b. Circuit Switching 
c. Both a) and b)
d. None of the above

Show Answer ⟶
b. Circuit Switching

6. _________ is a medium that is used in the transmission of a message from one point to another.
a. Channel 
b. Bandwidth
c. Method
d. All of the above

Show Answer ⟶
a. Channel

7. __________ is a computer network organized around an individual person.
a. Personal Area Network 
b. Local Area Network
c. Wide Area Network
d. Metropolitan Area Network

Show Answer ⟶
a. Personal Area Network

8. ________ is a network in which the devices are connected over a relatively short distance.
a. Personal Area Network
b. Local Area Network 
c. Wide Area Network
d. Metropolitan Area Network

Show Answer ⟶
b. Local Area Network

9. _________ is a network which spans a physical area ( in the range of 5 and 50 km diameter) that is larger than a LAN but smaller than a WAN.
a. Personal Area Network
b. Local Area Network
c. Wide Area Network
d. Metropolitan Area Network 

Show Answer ⟶
d. Metropolitan Area Network

Network and Internet Class 11 MCQ

10. ________ is a network which spans a large geographical area, often a country or a continent.
a. Personal Area Network
b. Local Area Network
c. Wide Area Network 
d. Metropolitan Area Network

Show Answer ⟶
c. Wide Area Network

11. _______ is a device that enables a computer to transmit data over telephone or cable lines. RJ-45: An eight wired connector used to connect computers on a LAN.
a. Modem 
b. Hub
c. Router
d. Switch

Show Answer ⟶
a. Modem

12. _________ is a kind of network adapter.
a. Sound card
b. Graphics card
c. Ethernet card 
d. None of the above

Show Answer ⟶
c. Ethernet card

13. ______ is a small hardware device that joins multiple computers together within a LAN.
a. Modem
b. Hub
c. Router
d. Switch 

Show Answer ⟶
d. Switch

14. _______ is an electronic device that amplifies the received signal and then retransmits it on the network.
a. Modem
b. Hub
c. Repeater 
d. Switch

Show Answer ⟶
c. Repeater

Network and Internet Class 11 MCQ

15. _______ is a network device that connects two networks with different protocols.
a. Modem
b. Router 
c. Repeater
d. Switch

Show Answer ⟶
b. Router

16. _______ is a network device that connects two dissimilar networks.
a. Modem
b. Gateway 
c. Repeater
d. Switch

Show Answer ⟶
b. Gateway

17. ________ is a small, portable card that allows your computer to connect to the internet through a wireless network.
a. Wi-Fi card 
b. Wi-Max card
c. Network card
d. None of the above

Show Answer ⟶
a. Wi-Fi card

18. Protocol: A special set of rules that two or more machines on a network follow to communicate with each other.
a. Device
b. Protocol 
c. Method
d. None of the above

Show Answer ⟶
b. Protocol

19. _________ protocol breaks the data into packets that the network can handle efficiently.
a. File Transfer Protocol
b. Transmission Control Protocol 
c. Circuit Protocol
d. None of the above

Show Answer ⟶
b. Transmission Control Protocol

Network and Internet Class 11 MCQ

20. ___________ is used for transferring (downloading or uploading) files from one system to another on the internet.
a. File Transfer Protocol 
b. Transmission Control Protocol
c. Circuit Protocol
d. None of the above

Show Answer ⟶
a. File Transfer Protocol

21. _________ protocol is used for transferring hypertext files on the World Wide Web.
a. File Transfer Protocol
b. Hypertext Transfer Protocol 
c. Transmission Control Protocol
d. None of the above

Show Answer ⟶
b. Hypertext Transfer Protocol

22. ________ protocol is used for communication between two computers using a serial interface.
a. Client Server Protocol
b. Point Transfer Protocol
c. Point-to-Point Protocol 
d. None of the above

Show Answer ⟶
c. Point-to-Point Protocol

23. ________ protocol allows transmission of email over the Internet.
a. SMTP 
b. POP3
c. TCP
d. FTP

Show Answer ⟶
a. SMTP

24. _________ protocol receives and holds email for an individual until they pick it up.
a. SMPT
b. POP3 
c. TCP
d. FTP

Show Answer ⟶
b. POP3

Network and Internet Class 11 MCQ

25. ________ is a protocol for creating a connection with a remote machine.
a. IRC
b. VOIP
c. Telnet 
d. None of the above

Show Answer ⟶
c. Telnet

26. ______ protocol is used for chatting. It is based on a client/server model.
a. IRC
b. VOIP
c. Telnet
d. None of the above

Show Answer ⟶
a. IRC

27. VOIP stands for __________. It enables the transfer of voice using a packet switched network rather than using a public switched telephone network.
a. Voice over international protocol
b. Voice over internet protocol 
c. Voice open internet protocol
d. None of the above

Show Answer ⟶
b. Voice over internet protocol

28. A ___________ address is a unique 12 digit (6 digits for manufacturer code and 6 digits for serial number) hexadecimal number assigned to each NIC. The MAC address of an NIC never changes.
a. MAC (Media Access Control) 
b. IP (Internet Protocol)
c. FTP (File Transfer Protocol)
d. None of the above

Show Answer ⟶
a. MAC (Media Access Control)

29. An _________ address is a unique 4 digit hexadecimal number assigned to each node on a network.
a. MAC (Media Access Control)
b. IP (Internet Protocol) 
c. FTP (File Transfer Protocol)
d. None of the above

Show Answer ⟶
b. IP (Internet Protocol)

Network and Internet Class 11 MCQ

30. Domain Name is a name assigned to a server through _________. A domain name usually has more than one part: top level domain name or primary domain name and sub-domain name(s).
a. Damian Next System
b. Domain Nerve System
c. Domain Name System 
d. None of the above

Show Answer ⟶
c. Domain Name System

31. ___________ is the process of getting corresponding IP addresses from a domain name.
a. Damian Next System
b. Domain Name Resolution
c. Domain Name System
d. None of the above

Show Answer ⟶
b. Domain Name Resolution

32. The term _________ refers to malicious programs designed with the intention to affect the normal functionality by causing harm to the system, or with the intention of getting unauthorized access to the system, or denying access to legitimate users of computing resources.
a. Malware 
b. Anti Virus
c. Both a) and b)
d. None of the above

Show Answer ⟶
a. Malware

33. __________ is a malicious program that attaches itself to the host program. It is designed to infect the host program and gain control over the system without the owner’s knowledge.
a. Virus 
b. Anti Virus
c. Trojan Horse
d. None of the above

Show Answer ⟶
a. Virus

34. _________ is also a malicious program like a virus. But unlike viruses, it doesn’t need to attach itself to a host program. 
a. Host 
b. Worm 
c. Trojan Horse
d. None of the above

Show Answer ⟶
b. Worm  

Network and Internet Class 11 MCQ

35. _________ is a program that contains hidden malicious functions. Trojan Horses trick users into installing them by appearing to be legitimate programs.
a. Host t
b. Worm
c. Trojan Horse 
d. None of the above

Show Answer ⟶
c. Trojan Horse

36. Unwanted messages or emails are known as _________.
a. Inbox
b. Trash
c. Spam
d. None of the above

Show Answer ⟶
c. Spam

37. Small text file which generally contains the name of the website that it has come from and a unique ID tag is known as _______.
a. Inbox
b. Cookies
c. Spam
d. None of the above

Show Answer ⟶
b. Cookies

38. A ________ is hardware or software based network security system. It prevents unauthorized access (hackers, viruses, worms etc.) to or from a network.
a. Password
b. Firewall 
c. Network Security
d. None of the above

Show Answer ⟶
b. Firewall

39. _______ is defined as a crime in which a computer and internet is used in an illegitimate way to harm the user.
a. Password
b. Cyber crime 
c. Network Security
d. None of the above

Show Answer ⟶
b. Cyber crime

Network and Internet Class 11 MCQ

40. _________ are the rights given to an individual over the invention of their own. They usually give the creator an exclusive right over the use of his/her creation for a certain period of time.
a. Copyright
b. Intellectual Property rights 
c. Trade
d. None of the above

Show Answer ⟶
b. Intellectual Property rights

41. _________ is the term used for people who engaged themselves in harmless technical experiments and fun learning activities.
a. Hacking 
b. Cracking
c. Copyright
d. None of the above

Show Answer ⟶
a. Hacking

42. _________ can be defined as a method by which a person gains unauthorized access to a computer with the intention of causing damage.
a. Hacking
b. Cracking 
c. Copyright
d. None of the above

Show Answer ⟶
b. Cracking

Employability Skills Class 11 Notes

  1. Communication Skills Class 11 Notes
  2. Self Management Skills Class 11 Notes
  3. ICT Skills Class 11 Notes
  4. Entrepreneurial Skills Class 11 Notes
  5. Green Skills Class 11 Notes

Employability Skills Class 11 MCQ

  1. Communication Skills Class 11 MCQ
  2. Self Management Skills Class 11 MCQ
  3. ICT Skills Class 11 MCQ

Employability  Skills Class 11 Questions and Answer

  1. Communication Skills Class 11 Questions and Answers
  2. Self Management Skills Class 11 Questions and Answers
  3. ICT Skills Class 11 Questions and Answers
  4. Entrepreneurship Skills Class 11 MCQ & QA
  5. Green Skills Class 11 MCQ & QA

Web Application Class 11 Notes

Web Application Class 11 MCQ

Web Application Class 11 Questions and Answers

error: Content is protected !!