Answer Posted / ranganathkini
JScript is a derivative the ECMAScript standard regulated by
the ECMA standards comittee. ECMAScript/JavaScript became a
popular scripting language that cud be embedded into
standard HTML/XHTML pages to perform dynamic client-side
actions. Netscape supported JavaScript in their Navigator
web-browser and Microsoft added it to Microsoft Internet
Explorer
Soon Microsoft started developing extra features for the
language such as new objects and added this to their
Internet Explorer product. This cause a lot of problems for
web developers to provide a consistent experience of their
web sites across different browsers.
Hence Microsoft took off and renamed their implementation of
the ECMAScript as JScript.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Can you give names of Container classes?
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
How do you define a singleton class?
What are the java ide’s?
What do you mean by stream pipelining in java 8?
Can a class declared as private be accessed outside it’s package?
What is the difference between an interface and an abstract class?
What is the main difference between java platform and other platforms?
How is string stored in java?
What is java argument list?
What is the multi-catch block in java?
Wha is the output from system.out.println(“hello”+null); ?
Explain 5 io best practices?
What is difference between wait and notify in java?
Implement 2 stacks with just 1 array. The stack routines must not indicate overflow unless every slot in array is used.