Advertisements
Advertisements
Which generation of computers used IC’s?
Concept: undefined >> undefined
Discuss the various generations of computers.
Concept: undefined >> undefined
Advertisements
The Operating system is a ______.
Concept: undefined >> undefined
Identify the usage of Operating Systems.
Concept: undefined >> undefined
List out any two uses of the Operating System?
Concept: undefined >> undefined
List out the key features of the Operating system?
Concept: undefined >> undefined
From the options given below, choose the operations managed by the operating system.
Concept: undefined >> undefined
What is known as Multitasking?
Concept: undefined >> undefined
Differentiate Save and Save As option.
Concept: undefined >> undefined
Write a note on Recycle bin.
Concept: undefined >> undefined
If `sqrt2` = 1.414, and the square_root() function returns -1.414, does it violate the following specification?
-- square_root (x)
-- inputs: x is a real number , x ≥ 0
-- outputs: y is a real number such that y2 = x
Concept: undefined >> undefined
When do you say that a problem is algorithmic in nature?
Concept: undefined >> undefined
Suppose you want to solve the quadratic equation ax2 + bx + c = 0 by an algorithm.
quadratic_solve (a, b, c)
-- inputs:?
-- outputs:?
You intend to use the formula and you are prepared to handle only real number roots. Write a suitable specification.
x = `(-b ± sqrt(b^2) - 4ac)/(2a)`
Concept: undefined >> undefined
Draw a flowchart for the conditional statement.
Concept: undefined >> undefined
Both conditional statements and iterative statements have a condition and a statement. How do they differ?
Concept: undefined >> undefined
What is case analysis?
Concept: undefined >> undefined
Exchange the contents: Given two glasses marked A and B. Glass A is full of apple drink and glass B is full of grape drink. Write the specification for exchanging the contents of glasses A and B, and write a sequence of assignments to satisfy the specification.
Concept: undefined >> undefined
Decanting problem. You are given three bottles of capacities 5,8 and 3 litres. The 8L bottle is filled with oil, while the other two are empty. Divide the oil in an 8L bottle into two equal quantities. Represent the state of the process by appropriate variables. What are the initial and final states of the process? Model the decanting of oil from one bottle to another by assignment. Write a sequence of assignments to achieve the final state.
Concept: undefined >> undefined
Suppose u, v = 10 ,5 before the assignment. What are the values of u and v after the sequence of assignments?
1 u := v
2 v := u
Concept: undefined >> undefined
