Online Transaction Class 10 IT 402 Important Questions Unit 4

Online Transaction Class 10 IT 402 Unit 4 Q1. What do you mean by Online Transaction? Q2. Write two benefits of online transaction. Q3. What is online shopping? Q4. Write three situations where online shopping is beneficial? Q5. Name four popular online transaction websites. Q6. Name one online portal for the following : a. To … Read more

15+ Common Python List Questions for Practice Important Programs

Most Common Python List Questions Q1. Write a function find(name) in python to display all the names from a list of names which are starting from alphabet ‘p’. Ans. name = [‘Amit’ , ‘Sumit’, ‘Pooja’ , ‘Mini’ , ‘Ronit’ , ‘Abdul’, ‘Poonam’] def find(name): for i in name: if i[0]==’p’ or i[0]==’P’: print(i) find(name) OUTPUT: … Read more

Top 25+ Python Text File Handling (Solved) Important Questions For beginners | Assignment

Python Text File (Solved) Questions – For beginners Q1. Write a program in python to read entire content of text file (“data.txt”)  Ans. f = open(“data.txt”, ‘r’) d = f.read( ) print(d) Q2. Write a program in python to read first 5 characters from the text file(“data.txt”)  Ans. f = open(“data.txt”, ‘r’) d = f.read(5) … Read more

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

error: Content is protected !!