You are on page 1of 1

1. Describe Von Neumann Architecture is important for high level languages.

2. Summarize importance of Binding and Binding Times.


3. Justify importance of Functional and Logic Programming Paradigm.
4. List what effects on Language Design due to Programming Environment are.
5. Summarize different roles of programming Languages
6. Justify importance Compiled languages and Interpreted languages
7. Explain design Issues for Subprograms and parameter passing methods
8. Analyze the computation and space required (Time Complexity) for (C++) a program for
implementing Bubble Sort.
Input − A list of unsorted data: 56 98 78 12 30 51
Output − Array after Sorting: 12 30 51 56 78 98
9. Design (C++) Program for reversing digits of given of given number
Input: 123 Output: 321.
10. Explain the Purpose when to go for short circuit evaluation and mixed mode evaluation
11. Analyze the computation and space required (Time Complexity) (C++) a program for
implementing Quick Sort
Input − A list of unsorted data: 56 98 78 12 30 51
Output − Array after Sorting: 12 30 51 56 78 98
12. Design (C++) a program to print Fibonacci series till 100.
Output: Fibonacci Series: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89

You might also like