What is data abstraction? How is it different from data encapsulation?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
What are the types of pointer?
What is an orthogonal base class in c++?
Will a catch statement catch a derived exception if it is looking for the base class?
When should overload new operator on a global basis or a class basis?
What is a constructor in c++ with example?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
What language does google use?
What is this pointer in c++?
Should the this pointer can be used in the constructor?
How should runtime errors be handled in c++?
What is nested class in c++?
How to allocate memory dynamically for a reference?
Does c++ have foreach?