A Math pow Java method is used to calculate a number raised to the power of some other number. To use this method you need to import java.lang.Math package. A Full form of java pow method in java power function. pow = power = ^ (Power operator) Note: ^ in java does not mean to raise Read More…
Month: March 2019
Java vs JavaScript | Difference between | performance, syntax, future
Mostly time asked this question in Interview – what Difference between Java vs JavaScript? So as a Developer you must have to answer this question and know about it both languages and its differences. The only one line answer is like JavaScript is scripting language and Java is programming language is not sufficient to impress Read More…
HTML Line Break | HTML br tag | Example code
HTML br Tag is used to text line break. Means if you have long text or paragraph tag and screen size is small then you break a line into multipart using HTML <br> tag. The <br> tag inserts a single line break and its an empty tag. Which means it has no end tag. Like Read More…
HTML P tag | HTML paragraph tag | break, font size, line space, indent
HTML P Tag is textual element. It’s also called as HTML Paragraph Tag. It’s a block level element and always start with a new line. This tutorial you will learn about HTML <p> tag basic and its attribute. The closing </p> tag is optional, a tag is omitted, it is considered that the end of Read More…
JavaScript Data Types and Examples | Dynamic Typing
JavaScript Data Types is not directly associated with any value type like other languages (Java, Python, etc) have int, String, etc. Any JavaScript Variable can be assigned and re-assigned the value. That why it’s called a Dynamic typing. All programming language has a build in data structure but with own changes and definition. There is Read More…
JavaScript Variables | Var Types | declaration, scope, string
JavaScript Variables (Var) is storage name of datatype. A kind of containter the holding a particuler type of value like String and numbers (integer) etc. “Var” keyword is used to declare Variables in JavaScript. A variable value can change anytime. You can assign the value to variable using equal to (=) operator. JavasSript Variable Types There Read More…
HTML Comments Tag | Single Line | Multiline | How to
How to use an HTML Comments in HTML code? You can do HTML comments like “<!- – comment – ->” in HTML document file. What does it mean? it begins with <!– and the comment closes with –>. Why HTML comments tag are used? HTML code use comments tag for easy understand code functionalists. For example, you build a Read More…
CSS Style Attribute | StyleSheet, Tag, Header | Sample Example
HTML alone can’t make a website (webpage). It always needs a CSS and JavaScript. Where a CSS can add in HTML only using a “Style Attributes” for inline CSS and “<style> Tag” for Internal and External CSS. CSS Style Attribute play important role when you want change single element color, size or any thing want Read More…
HTML Font Size | Tag, Code, Css, Style | px, em, small, bold
There are 2 terms that come when you going the change HTML font size. First is changing the size of text using a <font> tag and the other is using CSS style attribute. You will learn all the methods of HTML Text Size. For example how to make text font size small or bigger, what Read More…
HTML Text align | Center, Right, Top, Bottom | Vertical Alignment
HTML Text Align is required when you want a text presentation according to posing on any webpage. A Text Alignment can be Center, Right, Top, Bottom, Justify, or Vertical Horizontal. For HTML Text Alignment have to use a CSS style. This tutorial we will learn how to Align text and example on <p> and <div> Read More…