Write a program according to the specification given below:
Create a class Account with data members acc no, balance, and min_balance(static)
Include methods for reading and displaying values of objects
Define static member function to display min_balance
Create array of objects to store data of 5 accounts and read and display values of each object
What is meant by type conversion? Define two way of converting one user defined data type (object) to another user defined object? Write a program that converts object of another distance class with data members feet and inch.(Assume 1m = 3.3 feet and 1cm = 0.4 inch)
How ambiguity arises in multipath inheritance? How can you remove this type of ambiguity? Explain with suitable example.
Short Questions
Attempt any eight questions: (8 × 5=40)
What is structured programming? Discuss characteristics and problems associated with structured programming.
What is the use of get and getline functions? Explain with suitable example.
What is meant by pass by reference? How can we pass arguments by reference by using reference variable? Illustrate with example.
What is constructor? Explain the concept of default and default copy with suitable example.
What is the concept of friend function? How it violates the data hiding principle? Justify with example.
What is exception? Why exception handling is better to use? Explain exception handling with try… catch by using suitable example.
When class templates are useful? How can you define a class that can implement stack with integer as well as sack of strings? Illustrate with example.
What is meant by stream? Write a program that reads content of file data.txt and displays the content in monitor.