Start Discovering Solved Questions and Your Course Assignments
TextBooks Included
Solved Assignments
Asked Questions
Answered Questions
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.
Illustrate the multiple function calls in cyclic order in main. Also write the benefits of building ISR queues. Discuss.
Write down the characteristics of OOPs. What do you understand by the Multiple Inheritance?
What is the syntax for the declaration of pointer and Null-pointer? Illustrate out the term pass by values.
Write down the datatypes accessible in C language. List all the data structures accessible in C language.
What do you mean by contiguous memory allocation? How will you resolve the dynamic storage allocation problem?
Write down a program in Java to implement the socket programming by using DataGram class.
What do you mean by constructor overloading in java? Describe with an illustration. List all the special properties of the constructors.
Describe the method overloading and overriding with illustrations.
Distinguish between the migration plan and a methodology.
How can we construct deadlock condition on our Servlet? Illustrate the difference between the JSP and Servlet?
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.
With a neat diagram describe the Model view controller design pattern and write down the advantages and disadvantages of using it in designing an applicatiom.
Write a Java program to perform matrix multiplication using arrays?
The following code implements two mutually recursive functions – functions that call each other:def ise(n):if n==0: return True.