Programs on Dictionary in Python Class 11 | Important Questions-Solved Exercise

Programs on Dictionary in Python Class 11 Q1. Write a Python program to arrange the values in a dictionary in ascending order. For example Original Dictionary = {1 : 25, 2 : 21, 3 : 23} Expected Output = [21, 25, 32] Solution: d={1:21,2:32,3:25} print(sorted(d.values())) print(d) Programs on Dictionary in Python Class 11 Q2. Write … Read more

Unit 4 Creating and Publishing Web Pages Blog Class 10 IT 402 Important Questions and Answers

Creating and Publishing Web Pages Blog Q1. What is blog? Q2. Name four websites that offer blog service. Q3. What is WordPress? Creating and Publishing Web Pages Blog Q4. Do we need to create an account on WordPress before creating blog on it? Q5. What do you mean by Blog address? Q6. Suman has created … Read more

Introduction to Instant Messaging Class 10 IT 402 Unit 4 Important Questions and Answers Session 3

Introduction to Instant Messaging Class 10 Q1. What do you mean by Instant Messaging? Q2. What is the difference between Email and Instant Messaging? Q3. ________ , ___________& Web Camera are required for audio and video conferencing. Introduction to Instant Messaging Class 10 Q4. Write four key features of Instant Messaging. Introduction to Instant Messaging … Read more

Networking Fundamentals Class 10 IT 402 Unit 4 Important Questions and Answers Session 2

Networking Fundamentals Class 10 SESSION 2 : NETWORKING FUNDAMENTALS CLASS 10 Q1. What do you mean by Computer Network? Q2. What is P2P Network? Q3. What is Client Server Network? Q4. The computer(s) which provide services in network are called ________ and the ones that use these services are called ____________. Networking Fundamentals Class 10 … Read more

Working with Accessibility Options Class 10 IT 402 Unit 4 Web Applications and Security Important Question and Answer Session 1

Working with Accessibility Options Class 10 IT 402 SESSION 1: Working with Accessibility Options Class 10 Q1. What do you mean by Computer accessibility? Q2. Write four types of impairment which have an impact on computer usage. Q3. Write the steps to open Accessibility options in Windows XP. SESSION 1: Working with Accessibility Options Class … Read more

Class 11 String Slicing in Python Exercise | Assignments | Best Solved Examples

String Slicing in Python Exercise String Slicing in Python is an important topic for Exams What is String Slicing in Python? String slicing in Python is to obtain a substring from the main string. Slice of string means part (substring) of string. Syntax of String Slicing in Python <String Name>[Start : Stop : Step] Start … Read more

error: Content is protected !!