ABCCode
91 FOLLOWERS
We provide Basic to Advance knowledge of Programming Languages to improve yourself. You can Learn Programming Faster. Don't Just Read Code, But Think like Programmer. Write your Own Code with No error No Warning. Use Space and Time Complexity in program code. You can tell whether the program is error and warning free even without using debugger. I would like to tell you that if you develop..
ABCCode
3y ago
Assignment 26 Write a program in C++ to overload the binary operator “+” (addition). Program Code for run: #include <iostream> #include <iomanip> using namespace std; class Box { int l, w, h; public: Box (int l = 0, int w = 0, int h = 0) {   ..read more
ABCCode
3y ago
Assignment 25 Create a class time that contains hours, minute and seconds as data members. Write the member function to overload operator ‘+’ to add two object of type time (Use Parameterized constructor to accept values for time). Program Code for run: #include <iostream> #include <iomanip> using namespace std; class Time { int hh, mm, ss; public: Time(int ..read more
ABCCode
3y ago
Assignment 24 Write a C++ program using class which contains two data members of type integer. Create and initialize the object using default constructor, parameterized constructor and parameterized constructor with default value. Write a member function to display maximum from given two numbers for all objects. Program Code for run: #include <iostream> using namespace std; class ConstDemo ..read more
ABCCode
3y ago
Assignment 23 Create two classes dist1 (meters, centimeters) and dist2 (feet, inches). Accept two distances from the user, one in meters and centimeters and the other in feet and inches. Find the sum and difference of the two distances. Display the result in both (meters and centimeters) as well as feet and inches (use friend function). Program Code for run: #include <iostream> using ..read more
ABCCode
3y ago
Assignment 22 Write a C++ program using class to check maximum of two integer numbers using Inline function and conditional operator. Example 1- Default Inline function Program Code for run: #include <iostream> using namespace std; class Operation { int n1, n2; public: void accept() // Default inline function { cout << " Enter the value of n1 ..read more
ABCCode
3y ago
Assignment 21Create a class student containing data members:a. Roll_no b. name c. marks1, marks2, marks3. Write necessary member functions: a. to accept details of one students b. to accept details of all students c. to display details of one stu ..read more
ABCCode
3y ago
Assignment 20Write a C++ program to find area of triangle, circle, and rectangle using function overloading.Use formula to calculate area as below: Area of Triangle = ( b * h) / 2Area of Circle = 3.14 * r * r Area of Rectangle = l * w Program Code for run: #include <iostream>using namespace std;void area(float b, float h, float a){ cout << ..read more
ABCCode
3y ago
Assignment 19Write a C++ program to find volume of cube, cylinder and rectangle using function overloading.Use formula to calculate Volume as below: Volume of Cube = a * a * aVolume of Cylinder = 3.14 * r * hVolume of Rectangle = l * w * hProgram Code for run: #include <iostream>using namespace std;void volume(float a){ cout << ..read more
ABCCode
3y ago
Assignment 18 Write a menu driven C++ program using class to perform all arithmetic operation. (+, -, *, /) (use inline function). Program Code for run: #include <iostream> using namespace std; class ArithmaticOpe { private: int n1, n2; public: void accept(); void addition(); void subtraction(); void division(); &n ..read more
ABCCode
3y ago
Assignment 17 Create a C++ class for a student object with the following attributes—roll no, name, number of subjects, marks of subjects. Write member function for accepting marks and display all information of student along with total and Percentage. Display mark list with using of manipulators. Program Code for run: #include <iostream>using namespace std;#include<iomanip>class Student ..read more