recategorized
4,488 views
1 1 vote

Consider the JavaScript Code:

var y=”12”
function f() {
var y=”6”;
alert (this.y);
function g() {alert (y); }
g();
}
f();

If $M$ is the number of alert dialog boxes generated by this JavaScript code and D1, D2, $\dots$, $D_M$ represents the content displayed in the each of the $M$ dialog boxes, then: 

  1. M=3; D1 displays “12”; D2 displays “6”; D3 displays “12”
  2. M=3; D1 displays”6”; D2 displays “12”; D3 displays “6”
  3. M=2; D1 displays”6”; D2 displays “12”.
  4. M=3; D1 displays”12”; D2 displays “6”

1 Answer

0 0 votes
Answer must be 4
Position:
Show:

Related questions

2 2 votes
1 1 answer
2.0k
2.0k views
go_editor asked Aug 10, 2016
1,958 views
Javascript and Java have similar name becauseJavascript syntax is loosely based on Java's syntaxJavascript is stripped down version of JavaJava and Javascript are origina...
1 1 vote
2 2 answers
3.4k
3.4k views
Pooja Khatri asked Jul 13, 2018
3,423 views
The definitions in an XML document are said to be ______ when the tagging system ans definitions in the DTD are all in compliancewell-formedreasonablevalidlogical
6 6 votes
2 2 answers
4.1k
4.1k views
ajit asked Oct 15, 2015
4,146 views
The correct syntax to write "Hi there" in Javascript isjscript.write ("Hi There")response.write ("Hi There")print ("Hi There")print.jscript ("Hi There")
3 3 votes
2 answers 2 answers
2.6k
2.6k views
go_editor asked Aug 20, 2016
2,629 views
Which of the following statements is not correct?HTML is not screen precise formatting languageHTML does not specify a logicDHTML is used to developing highly interacting...