INFORMATION and COMMUNICATION TECHNOLOGY SKILL-I INTRODUCTION TO ICT 1. ICT stands for a) Information and Communication Technologyb) Intelligent Computer Technologyc) Interconnected Communication Toold) Internet and Computing Technology 2. Which...
What is Artificial Intelligence (AI)? What is Artificial Intelligence (AI)? Artificial Intelligence (AI) refers to the ability of machines and computer systems to perform tasks that normally require human...
Python Line Chart Example | Plot Monthly Sales Data using Matplotlib SOLUTION …… import matplotlib.pyplot as plt # Data months = ["January", "February", "March", "April", "May", "June"] sales =...
OpenCV Python Program | Load, Convert, Crop, and Save Image Example SOLUTION…… import cv2 # (a) Load an image and give it a title img = cv2.imread('2.png') # Replace...
Python Bar Chart Example | Plot Mobile Game Ratings using Matplotlib SOLUTION ….. import matplotlib.pyplot as plt # Sample data games = ['Pubg', 'FreeFire', 'MineCraft', 'GTA-V', 'Call of Duty',...
Python Line Chart Example | Plot Clothes Store Sales Data using Matplotlib SOLUTION…. import matplotlib.pyplot as plt # Data months = ["March", "April", "May", "June", "July", "August"] jeans =...
Python Program to Find Variance and Standard Deviation | Example with Code SOLUTION….. # Program to calculate variance and standard deviation # Given data data = [33, 44, 55,...
Python Palindrome Number Program | Check Palindrome Example with Code SOLUTION :- # Program to check whether a number is a palindrome or not # Input from user num...
Python Armstrong Number Program | Check Armstrong Number Example SOLUTION. num = int(input("Enter the number :- ")) temp = num sum = 0 while temp >0: rem = temp...
Python Program to Calculate Electricity Bill Based on Unit Charges SOLUTION . # Python Program to Calculate Electricity Bill # Input the number of units consumed units = float(input("Enter...