tutorials
CAT 2006 testpaper with solutions
…http://www.coolavenues.com/mbasp/cat006testbooklet.pdf…
Read Full Post | Make a Comment ( None so far )Book List for CAT RC preparation
List Of Books For Your RC PreparationManagementAny Edition Of Harvard Business ReviewCase Studies Of Business World MagazineWhat They Don’t Teach You At Harvard Business School-Mark H McCormack
Physics/ScienceBrief History Of Time – Stephen HawkingAny Work Of Isaac AssimovThe Tao Physics – Fritjof Capra
PhilosophyZen And The Art Of Motor Cycle MaintenanceThe Fountainhead-Ayn Rand
Abstract TopicFutureshock Or Power Shift [...]
C++ faq’s and interview Questions – 3
7. How do I refer to a name of class or function that is defined within a namespace?Ans: There are two ways in which we can refer to a name of class or function that is defined within a namespace:Using scope resolution operator through the using keyword.This is shown in following example:namespace name1{class sample1{ // [...]
Read Full Post | Make a Comment ( None so far )C++ faq’s and interview Questions – 2
1. Can we declare a static function as virtual?Ans: No. The virtual function mechanism is used on the specific object that determines which virtual function to call. Since the static functions are not any way related to objects, they cannot be declared as virtual.————————————————————————————————
2. Can user-defined object be declared as static data member of another [...]
C++ Design Pattern: What is a Singleton class?
Q: What is a singleton class?A: A class whose number of instances that can be instantiated is limited to one is called a singleton class. Thus, at any given time only one instance can exist, no more.
Q: Can you give me an example, where it is used?A: The singleton design pattern is used whenever the [...]
Oracle/PLSQL Tutorials
http://www.techonthenet.com/oracle/index.php
Read Full Post | Make a Comment ( None so far )