Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Who developed JScript language?

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


Please Help Members By Posting Answers For Below Questions

Can you give names of Container classes?

2306


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 subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

1804


How do you define a singleton class?

1085


What are the java ide’s?

1032


What do you mean by stream pipelining in java 8?

1230


Can a class declared as private be accessed outside it’s package?

1013


What is the difference between an interface and an abstract class?

1006


What is the main difference between java platform and other platforms?

1108


How is string stored in java?

1063


What is java argument list?

943


What is the multi-catch block in java?

1042


Wha is the output from system.out.println(“hello”+null); ?

1145


Explain 5 io best practices?

1034


What is difference between wait and notify in java?

1145


Implement 2 stacks with just 1 array. The stack routines must not indicate overflow unless every slot in array is used.

1324