More Questions from Module 0

Write an infinite loop using do while condition.


View
Explain the concept of Direct and In-direct manipulation?
View

Can we define a static constructor in Java?


View

Write a program to print Fibonacci series of n terms where n is input by user :

0 1 1 2 3 5 8 13 21 ..... 

In the Fibonacci series, a number is the sum of the previous 2 numbers that came before it.


View

Take an array of numbers as input and check if it is an array sorted in ascending order.

Eg : { 1, 2, 4, 7 } is sorted in ascending order.

       {3, 4, 6, 2} is not sorted in ascending order.


View

Explain various types of buses? b) Discuss the functions of system software?


View

Searching for an element x in a matrix.


View