It is desired to design an object-oriented employee record system for a company. Each employee has a name, unique id and salary. Employees belong to different […]
Question 6 What function of x, n is computed by this program? Function what (x, n:integer): integer: Var value : integer; begin value:=1 if n>0 then […]
Question 5 Consider the program below: Program main; var r:integer; procedure two; begin write (r) end; procedure one; var r:integer; begin r:=5 two; end begin r:=2; […]