MCQs>IT & Programming>Adobe ColdFusion>Output of the code: function calculateresult() { var a=55; var b=5; b=a+b; b=b+b; return b; } #calculateresult()#
Adobe ColdFusion MCQs
What is the output of the following code:
<cfscript>
function calculateresult()
{
var a=55;
var b=5;
b=a+b;
b=b+b;
return b;
}
</cfscript>
<cfoutput>#calculateresult()#</cfoutput>
Answer
Correct Answer: 120
Explanation:
Note: This Question is unanswered, help us to find answer for this one