What are the important components of .Net?

The components of .Net are Common language run-time, .Net Class library, Application domain, Common Type System, .Net framework, Profiling, etc. However, the two important components are the Class library and the Common Language Runtime. CLR provides building blocks for a wide variety of applications. The class library consists of a set of classes that are … Read more

What is the .Net framework?

It is a platform for building various applications on windows. It has a list of inbuilt functionalities in the form of class, library, and APIs which are used to build, deploy and run web services and different applications. It supports different languages such as C#, VB .Net, Cobol, Perl, etc. This framework supports the object-oriented … Read more

What is the difference between Java and JavaScript?

Don’t be fooled by the term Java in both. Both are quite different technologies. The key differences can be summarized as follows: JavaScript variables are dynamically typed, whereas the Java variables are statically typed. var myVar1 = “Hello”;         //string type var myVar2 = 5;               //number type var myVar3 = new Object( );   //empty object type … Read more

What is the difference between innerHTML and append() in JavaScript?

InnerHTML is not standard, and its a String. The DOM is not, and although innerHTML is faster and less verbose, its better to use the DOM methods like appendChild(), firstChild.nodeValue, etc to alter innerHTML content innerHTML and append() are both JavaScript methods used to manipulate the content of HTML elements, but they have some key … Read more

What datatypes are supported in Javascript?

Number, String, Undefined, null, Boolean. In JavaScript, there are several data types that are supported. They include: Primitive Data Types: String: Represents textual data, e.g., “hello”. Number: Represents numeric values, e.g., 42. Boolean: Represents true or false values. Undefined: Represents a variable that has been declared but not assigned a value. Null: Represents the intentional … Read more