C++ Practice programs using Class and Objects
1. Write a simple C++ program using class and object. Output: 2. Write a program to add two numbers using …
C++ Practice Questions with Answers |C++ Exercises with Solutions
1. Write a C++ program to check two numbers are equal or not. Output: 2. Write a program to find …
SQL Practical Questions with Answers | SQL Practice with Solutions
1. Create the following table, “students” and insert the data into the table. roll_no name address birth_date 1 Liza Tinsukia …
Python Program| Exercises of Python Program
1. Write a python program to print your address. print(“Name:Ms. Eliza Begum”)print(“P.O:Tinsukia”)print(“Dist:Tinsukia”)print(“State:Assam”)print(“Pin:786125”) Output: Name:Ms. Eliza BegumP.O:TinsukiaDist:TinsukiaState:AssamPin:786125 2.  Write a program …
SQL Constraint | Constraints in SQL |What are constraints in SQL
Constraints are rules to control the data in a column. SQL constraints are rules applied to columns or tables to …
Python Functions |Functions in Python
A function is a block of code that performs a specific task. Types of Function- (i) Create a Function: To …
File Handling in Python| Python File Handling
The process of File Handling refers to how we store the available data or information in a file with the …