Java – What are Default methods in interface? A default method is static and not abstract. It’s static means it belongs to the interface itself. comment(s) In Java 8, default methods were introduced. default method is non-abstract and static method of an...
The dl tag, the definition list, in HTML5 The <dl> tag is used in conjunction with two other tags. These are and <dt> which means data term and <dd> which means data definition or description. comment(s) The <dl> is a definition or...
How To Make Lists Of Links If you want to create a list of unordered links, you nest the <a> tag in <ul>. Similarly, to create a list of ordered links, you nest the <a> tag in <ol> tag. comment(s) <a> nested in <ul> tag creates...
Primitive Data Types in Java Java has eight (8) primitive data types. Variables are declared to be one of the data types in Java. The data type of a variable determines what value can be stored in it. comment(s) Java has eight (8) primitive data types. A variable is...
What is the difference between strict and non-strict modes in Javascript? If you ask your code to be executed under strict mode, JavaScript will force you to declare your variables else it will throw an exception or call foul that your code has error. comment(s)...
Recent Comments