What is the difference between programing language and
scripting language.?
Answer Posted / iftikhar ali zahoor
Script Language is code fragment.it is interpreted.It is dynamically typed.
but the programming language is a compiled language and it is a stand alone application.
Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is data type in javascript?
How can you detect the client operating system using javascript?
Which built-in method returns the characters in a string beginning at the specified location?
Is javascript open source?
List out all the falsifying tokens in Javascript?
How to get value from a textbox?
Explain javascript closures by example.
Is javascript default scripting language?
What is a global variable in programming?
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }
What is asynchronous javascript?
Can you give an example showing javascript hoisting?
What is an onclick?
What are the types used in javascript?
What is use of settimeout function in javascript?