Start Discovering Solved Questions and Your Course Assignments
TextBooks Included
Active Tutors
Asked Questions
Answered Questions
Describe four key features of object-oriented approach giving appropriate real-life illustration(s).
Write down the C++ program which gives the technique search of the hash table.
Compare and contrast the Multiple Inheritance with Multilevel Inheritance giving appropriate illustration.
Illustrate out the Abstract data type for Stack. Write down a C++ program to execute Towers of Hanoi using stack ADT?
What do you mean by the term object oriented programming? Describe.
Describe the difference between static external and simple external variable. Write down a C program to explain the properties of the static variable.
Describe Adjacency Lists and Adjacency Matrix. Illustrate out the term insertion sort with an illustration.
Discuss and describe the significance of object orientation throughout system development.
Define the term exception. What do you mean by exception specification? Illustrate when it is used?
Distinguish between the private, public and protected access modifiers. As well describe their meaning if a derived class inherits from a base class by using public, protected and private keywords.
Define the term operation overloading with the help of an illustration.
Write down a suitable declaration for each of the given conditions comprising pointers.
By using the multidimensional array, write down a program in C to sort out a list of names in the alphabetical order.
Write down a C program which reads values from keyboard into a two-dimensional array. Construct two one-dimensional arrays which includes row and column averages.
Describe the difference between the program testing and debugging.
Describe the anti symmetric and transitive properties of aggregation. Why is it essential to have variety of diagrams in a model of a system?
Illustrate the difference between computation migration and process migration? Which is simpler to implement and explain why?
Explain the segmented paging scheme of memory management and the hardware needed to support the system.
Illustrate the four main reasons for building the distributed systems?
Describe how exceptional handling is done in the C++. Write down a C++ program for exception handling of divide by zero.
Describe the methods which are used to resolve the ambiguities in multiple inheritances. Give appropriate illustrations.
Write down the general syntax for dynamic allocation and de-allocation of the memory for arrays. Consider the given C++ statement which appears outside of a function.
Describe the features of a static variable. Write down a C program to describe the properties of the static variable.
Describe various types of pre-processor directives with illustrations.
The following code implements two mutually recursive functions – functions that call each other:def ise(n):if n==0: return True.