30 Days 30 AI Tools
No Code Coding Website
No Code Coding Website
FREE Microsoft Certification Vouchers 2025: How to Claim Yours in AI Skills Fest!
FREE Microsoft Certification Vouchers 2025: How to Claim Yours in AI Skills Fest! Microsoft’s AI Skills Fest 2025 offers a valuable opportunity to earn free certification exam vouchers across various AI, data, cloud, and security domains. Here’s how you can claim yours: 🎯 What Is AI Skills Fest? AI Skills Fest is a 50-day global […]
NoCode Coding Website
NoCode Coding Website 🌐 WordPress Website Development Course 📘 Module 1: Introduction to WordPress ✅ What is WordPress? An open-source Content Management System (CMS). Used to build websites, blogs, eCommerce stores, portfolios, etc. Powers over 40% of all websites on the internet. 🔍 WordPress.com vs WordPress.org WordPress.com – Hosted, limited customization, good for beginners. WordPress.org […]
Computer basic Course.
Computer basic Course. 💻 Computer Basics Course – Complete Notes 📘 1. Introduction to Computers Definition: A computer is an electronic device that processes data and performs tasks according to a set of instructions. Components: Input Devices: Keyboard, Mouse Output Devices: Monitor, Printer Storage Devices: Hard Drive, Pen Drive Processing Unit: CPU (Central Processing Unit) […]
Sem-2 Practical Practice Question2
Sem-2 Practical Practice Question2 Q.2 Write a program that creates structure of student with student id, name, percentage. Enter data of five students. Display data of those student whose percentage is less than 70 marks SOLUTION. #include stdio.h> #include string.h> // Define structure struct Student { int id; char name[50]; float percentage; }; int main() […]
Sem-2 Practical Practice Question1
Sem-2 Practical Practice Question1 Q.1 Write a Python program to print Fibonacci series up to n terms SOLUTION. # Function to print Fibonacci series up to n terms def fibonacci_series(n): a, b = 0, 1 print(“Fibonacci Series:”) for i in range(n): print(a, end=” “) a, b = b, a + b # Main program n […]
Sem-2 Practical Practice Question Set-4
Sem-2 Practical Practice Question Set-4 1. Write a Python program to print Fibonacci series up to n terms. 2.Write a program that creates structure of student with student id, name, percentage. Enter data of five students. Display data of those student whose percentage is less than 70 marks 3.Create following tables and apply appropriate constraints […]
Sem-2 Practical Practice Question3
Sem-2 Practical Practice Question3 Q.3 Create following tables with proper constraints and insert atleast 5 records in each. TableCourse (course_id, course_ name)Student(sno,sname,city,mobile,birth_date,course_id)Perform following tasks:1. Display student’s detail with course name.2. Display student’s detail who belongs to “ BCA” course.3. Display total numbers of student’s course_name wise.4. Display student’s detail as per city in ascending order […]
Sem-2 Practical Practice Question2
Sem-2 Practical Practice Question2 Q.2 Write a python program to print sum of N numbers using UDF. SOLUTION. # Define a user-defined function to calculate sum def sum_of_n_numbers(n): total = 0 for i in range(n): num = float(input(f”Enter number {i + 1}: “)) total += num return total # Main program n = int(input(“How many […]
