Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Variable scoping
Recent questions tagged variable-binding
5
5 votes
3
answers
3 answers
10.5k
10.5k views
ISRO-2013-7
Consider the following psuedocode:x: integer := 1 y: integer := 2 procedure add x:= x + y procedure second (P: Procedure) x: integer := 2 p() procedure first y: integer :...
Misbah Ghaya
10.5k
views
asked
Apr 25, 2016
Compiler Design
isro2013
runtime-environment
variable-binding
+
–
7
7 votes
3
answers
3 answers
10.1k
10.1k views
What is the difference between static scoping and dynamic scoping?
sampad
10.1k
views
asked
Oct 11, 2015
Programming in C
programming
variable-binding
+
–
7
7 votes
1
answers
1 answer
6.7k
6.7k views
GATE IT 2007 | Question: 35
Early binding refers to a binding performed at compile time and late binding refers to a binding performed at execution time. Consider the following statements:Static sco...
Ishrat Jahan
6.7k
views
asked
Oct 29, 2014
Programming in C
gateit-2007
programming
variable-binding
normal
out-of-gatecse-syllabus
+
–
30
30 votes
5
answers
5 answers
12.6k
12.6k views
GATE IT 2007 | Question: 34, UGCNET-Dec2012-III: 52
Consider the program below in a hypothetical programming language which allows global variables and a choice of static or dynamic scoping.int i; program main() { i = 10; ...
Ishrat Jahan
12.6k
views
asked
Oct 29, 2014
Programming in C
gateit-2007
programming
variable-binding
easy
ugcnetcse-dec2012-paper3
+
–
1
1 vote
1
answers
1 answer
2.6k
2.6k views
GATE CSE 1994 | Question: 22
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; two; one; two; ...
Kathleen
2.6k
views
asked
Oct 5, 2014
Programming in C
gate1994
programming
variable-binding
normal
out-of-gatecse-syllabus
+
–
9
9 votes
3
answers
3 answers
8.5k
8.5k views
GATE CSE 1999 | Question: 2.13
Consider the following program in a language that has dynamic scooping:var x: real; procedure show: begin print(x);end; procedure small; var x: real; begin x: = 0.125; sh...
Kathleen
8.5k
views
asked
Sep 23, 2014
Programming in C
gate1999
programming
variable-binding
normal
out-of-gatecse-syllabus
+
–
2
2 votes
2
2 answers
7.6k
7.6k views
GATE CSE 2003 | Question: 75
Consider the following class definitions in a hypothetical Object Oriented language that supports inheritance and uses dynamic binding. The language should not be assumed...
Kathleen
7.6k
views
asked
Sep 17, 2014
Programming in C
gatecse-2003
programming
variable-binding
normal
out-of-gatecse-syllabus
+
–
To see more, click for the
full list of questions
or
popular tags
.