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


Please Help Members By Posting Answers For Below Questions

What is data type in javascript?

543


How can you detect the client operating system using javascript?

656


Which built-in method returns the characters in a string beginning at the specified location?

678


Is javascript open source?

513


List out all the falsifying tokens in Javascript?

757






How to get value from a textbox?

693


Explain javascript closures by example.

582


Is javascript default scripting language?

569


What is a global variable in programming?

577


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; }

2984


What is asynchronous javascript?

542


Can you give an example showing javascript hoisting?

523


What is an onclick?

596


What are the types used in javascript?

614


What is use of settimeout function in javascript?

611