jituTechnology

jituTechnology

Linux Mint: Tips and Tricks

It’s becoming difficult these days to come across a discussion on any forum about a good Linux distribution for beginners and not encounter the name ‘Mint’. Mint is a distribution heavily derived from Ubuntu, so much so that it is completely binary compatible with it and uses the exact same Ubuntu repositories for package downloads. […]

read more

>3.2 Toollbooth at a bridge programme

> /*imagine a tollbooth at a bridge. Cars passing by the booth are expected to pay a five-rupee toll. Mostly they do, but sometimes a car goes by without paying. The tollbooth keeps track of the number of cars that have gone by and of the total amount of money collected. Model this tollbooth with […]

read more

>3.1 Write a program to test this class for 10 customers. Make use of all three types of constructors (wherever appropriate)

> /* define a class to represent a bank account. Include the following members: Data Members: i)                    Name of the account holder ii)                   Account number iii)                 Balance amount in the account Member functions: I)                    Open an account II)                  Deposit and withdrawal money III)                Display account information Write a program to test this class for 10 […]

read more

>2.5 Write a program to represent a Circle to calculate area and perimeter

> /*Write a program to represent a Circle. Include member functions to perform the following task: a.     Calculate area of the circle b.     Calculate perimeter of the circle Programmed by: Name: Jitendra Kr Yadav Roll: 10116 (NCIT-ELX) Date: 23 july 2011*/ #include <iostream.h> #include <conio.h> class Circle { private: float r; public: void assign(float a) […]

read more

>2.4 Design a class called Person that contains appropriate members for storing name, age, gender and telephone number

> /*Design a class called Person that contains appropriate members for storing name, age, gender and telephone number. Write member functions that can read and display these data. Programmed by: Name: Jitendra Kr Yadav Roll: 10116(NCIT-ELX) Date:20 july,2011*/                                                                                                           #include<iostream.h> #include<conio.h> #include<math.h> class Person { private: char name[30]; int age; char gender[7]; char phno[11]; public: […]

read more