closed by
638 views
0 votes
0 votes
Program PARAM (input, output);

var m, n : integer;

procedure P (var, x, y : integer);

var m : integer;

begin

m : = 1; x : = y + 1

end;

procedure Q (x:integer; vary : integer);

begin x:=y+1;

end;

begin m:=0; P(m,m); write (m);

n:=0; Q(n*1,n); write (n) end

value of m,n??
closed by

Related questions

447
views
0 answers
0 votes
Kathleen asked Sep 13, 2014
447 views
2.5k
views
1 answers
12 votes
go_editor asked Feb 5, 2018
2,527 views
The following relations are used to store data about students, courses, enrollment of students in courses and teachers of courses. Attributes for primary key in each ... the relations so that they are in $\text{3NF}$ (without proving).
7.0k
views
0 answers
0 votes
hem chandra joshi asked Sep 6, 2017
6,959 views
2's complement representation of a 16 bit number ( one sign bit and 15 magnitude bits) is FFFF . Its magnitude in decimal representation is(a) 0 (b) 1 (c)32767 (d) 65535
1.7k
views
1 answers
1 votes
piyushkr asked Dec 31, 2015
1,749 views
$\sum(range -> 1<=k<=n) O(n)$, where O(n) stands for order n is -a) O(n) b) O(n2)c) O(m3) d) O(3n2)