Eliza Begum
Fill up the blank in C++| C++ Fill in the blank Question with Answer
1. C++ is an _______________ language. Answer: object-oriented programming 2. C++ language is case _______________ Answer: sensitive 3. _________________ header …
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 …
SQLite Practical Questions with Answers | SQLite 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 find the sum of a three-digit number. n=input(“Enter a three-digit number: “)digit1=int(n[0])digit2=int(n[1])digit3=int(n[2])print (f”Sum: {digit1 …