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 […]
Sem-2 Practical Practice Question1
Sem-2 Practical Practice Question1 Q.1 Write a program to create structure of employee with membersEmpid, EmpName, Qualification and EmpSalary by taking input of 5 employees display the employee whose qualification is “MBA” and salary greater than 20000. Solution. #include stdio.h> #include string.h> #define SIZE 5 // Define structure struct employee { int empid; char empname[50]; […]
Sem-2 Practical Practice Question Set-3
Sem-2 Practical Practice Question Set-3 Q.1 Write a program to create structure of employee with membersEmpid, EmpName, Qualification and EmpSalary by taking input of 5 employees display the employee whose qualification is “MBA” and salary greater than 20000. Q.2 Write a python program to print sum of N numbers using UDF. Q.3 Create following tables […]
Sem-2 Practical Practice Question3
Sem-2 Practical Practice Question3 Q.3 Create following tables with proper constraints and insert at least 5 records in each.dealer(dno, dname)item(item_id, item_name)order(ono, item_id, dno, order_date, amount)Perform following tasks:1. Display order detail with dealer name.2. Display total amount of each dealer.3. Display order date, dealer name whose amount is more than 600000.4. Display ordered detail item wise […]