×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Net Meeting
Tutorix
Login
Packages
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Library
Videos
Q/A
eBooks
Login
Library
Videos
eBooks
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Selected Reading
UPSC IAS Exams Notes
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Lakshmi Srinivas
has Published
366
Answers
How can I use a label with continue statement in JavaScript?
Javascript
Web Development
Front End Technology
Lakshmi Srinivas
Published on 23-Jan-2018 11:59:21
A label can be used to continue statement to control the flow more precisely in JavaScript. A label is simply an identifier followed by a colon (:) that is applied to a statement or a block of code.ExampleYou can try to run the following code to learn how to work ...
Read More
How to draw a circular gradient in HTML5?
HTML
Web Development
Front End Technology
Lakshmi Srinivas
Published on 22-Jan-2018 11:18:57
This method returns a CanvasGradient object that represents a radial gradient that paints along the cone given by the circles represented by the arguments. The first three arguments define a circle with coordinates (x1, y1) and radius r1 and the second a circle with coordinates (x2, y2) and radius r2.createRadialGradient(x0, ...
Read More
How to use URL input type in HTML?
HTML
Web Development
Front End Technology
Lakshmi Srinivas
Published on 19-Jan-2018 17:38:25
The URL input type is used in HTML using the <input type="url">. Using this, allow users to add URL input type. On some browsers, the URL entered will be validated i.e. if you miss .com, while adding URL, then it won’t submit the form and will show an error i.e. ...
Read More
How to allow multiple file uploads in HTML forms.
HTML
Web Development
Front End Technology
Lakshmi Srinivas
Published on 19-Jan-2018 16:53:18
If you want to allow a user to upload the file to your website, you need to use a file upload box, also known as a file select box. This is created using the <input> element and the type attribute is set to file.To allow multiple file uploads in HTML forms, ...
Read More
How to mark work title using cite tag in HTML?
HTML
Web Development
Front End Technology
Lakshmi Srinivas
Published on 18-Jan-2018 11:18:36
Work title can be the title for a book, a song, a painting, a movie, etc. To mark work title in HTML, use <cite>…</cite> tag. The <cite> tag indicates citation and whatever comes inside the tag represents work title.ExampleYou can try to run the following code to mark work title ...
Read More
How to mark deleted text in HTML?
HTML
Web Development
Front End Technology
Lakshmi Srinivas
Published on 18-Jan-2018 10:33:46
To mark deleted text in HTML, use the <del>…</del> tag. It renders a strikethrough text. HTML5 introduced the <del> tag. Before the <strike> tag was used to mark deleted text, which is now deprecated.Just keep in mind both the opening and closing tag is mandatory while using the <del>...</del> tag. ...
Read More
How to make text italic in HTML?
Javascript
Web Development
Front End Scripts
Lakshmi Srinivas
Published on 17-Jan-2018 17:44:05
To make text italic in HTML, use the <i>…</i> tag or <em>…</em> tag. Both the tags have the same functioning, but <em> tag is a phrase tag, which renders as emphasized text.Just keep in mind that you can get the same result in HTML with CSS font-style property.ExampleYou can try ...
Read More
How to use href attribute in HTML Page?
HTML
Web Development
Front End Technology
Lakshmi Srinivas
Published on 17-Jan-2018 16:14:03
The href attribute in an HTML page is used to specify the URL for a page. If the href attribute is not present, then the <a> tag will not be considered as a hyperlink.Just keep in mind the href attribute should get included as an attribute for <a> tag. It ...
Read More
What does the method equals(obj[] a1, obj[] a2) do in java?
Java 8
Object Oriented Programming
Programming
Lakshmi Srinivas
Published on 16-Jan-2018 12:40:19
The equals(Object[] a, Object[] a2) method of the java.util.Arrays class returns true if the two specified arrays of objects are equal to one another. The two arrays are considered equal if both arrays contain the same number of elements, and all corresponding pairs of elements in the two arrays are equal. ...
Read More
What does the bitwise right shift operator do in Java?
Java 8
Object Oriented Programming
Programming
Lakshmi Srinivas
Published on 08-Jan-2018 11:59:09
The left operand value is moved right by the number of bits specified by the right operand.Example: A >> 2 = 15 means 1111.
Previous
1
...
30
31
32
33
34
35
36
37
Next
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout