in Technology by

Predict the output.
Hi {{name}}.
is used with the context variable:
var context = {
"name" : "< b>Jane Roe< /b>"
}

(1)Jane Roe without any style
(2)Nothing to display
(3)< b>Jane Roe< /b>
(4)< b>Jane Roe< /b>

 

1 Answer

0 votes
by

Answer:-(3)< b>Jane Roe< /b>

Related questions

0 votes
    Predict the output of the following JavaScript code. var a="blogsforblog"; var x=a.lastIndexOf("b"); document.write(x); A) 8 B) 0 C) 9 D) Error...
asked Feb 27, 2021 in Technology by JackTerrance
0 votes
    Predict the output of the following JavaScript code.
    What is the name of the function that takes the input and maps it to the output variable called? (1)Hypothesis Function (2)None of the options (3)Map Function (4)Model Function...
asked May 22, 2021 in Technology by JackTerrance
0 votes
    Fill in the blanks: Let X be a random variable taking values x1, x2,..., xn with probabilities p1, p2, ..., ... . Then var (X) = Select the correct answer from above options...
asked Nov 19, 2021 in Education by JackTerrance
0 votes
    Code A: var x = 10; y = --x + 1; alert(y); Code B: var x = 10; y = x-- + 1; alert(y); What is the output for code A and B? 1. 10,11 2. 10,10 3. 11,10 4. 11,11...
asked Feb 23, 2021 in Technology by JackTerrance
+1 vote
    Code A: var x = 10; y = --x + 1; alert(y); Code B: var x = 10; y = x-- + 1; alert(y); What is the output for code A and B? a)10,11 b)10,10 c)11,10 d)11,11...
asked Oct 8, 2020 in Technology by JackTerrance
0 votes
    Predict the output of the following code snippet function foo(input: boolean) { let one = 1200; if (input) { let ans ... 1. 1201 2. Undefined 3. Compilation error 4. Runtime error...
asked Jun 29, 2021 in Technology by JackTerrance
0 votes
    Predict the output of the following JavaScript code. a = 8 + "8"; document.write(a); A) 16 B) Compilation Error C) 88 D) Run Time Error...
asked Feb 27, 2021 in Technology by JackTerrance
0 votes
    1. Predict the output of the following operations if x=5 and y=3. x>=10&& y>=4 f. x>=1 || y>=4 Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    Predict the output of the following: Print(52*7) Print(“52*7”) Print(“52*7=”,52*7) Print(“52″*7) Select the correct answer from above options...
asked Nov 26, 2021 in Education by JackTerrance
0 votes
    Is the following a valid variable assignment var product cost = 3.45; 1. No. There should be no space in the variable ... No. Floating numbers are not allowed 3. Yes. It is valid...
asked Feb 23, 2021 in Technology by JackTerrance
0 votes
    Is the following a valid variable definition? var 100apples 1. True 2. False...
asked Feb 23, 2021 in Technology by JackTerrance
+1 vote
    Is the following a valid variable assignment var product cost = 3.45; a)No. There should be no space in the variable name b)No. Floating numbers are not allowed c)Yes. It is valid...
asked Oct 8, 2020 in Technology by JackTerrance
...