what type of questions
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between class and structure?
Can private class be inherited?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
Program to check whether a word starts with a capital letter or not.
What is abstract class in oop?
How to use CMutex, CSemaphore in VC++ MFC
What is polymorphism used for?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.
What are benefits of oop?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
Difference ways of Polymorphism?