
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Ankith Reddy has Published 996 Articles

Ankith Reddy
2K+ Views
A matrix is a rectangular array of numbers that is arranged in the form of rows and columns.An example of a matrix is as follows.A 3*4 matrix has 3 rows and 4 columns as shown below.8 6 3 5 7 1 9 2 5 1 9 8A program that multiplies ... Read More

Ankith Reddy
398 Views
Use the tag to display the deleted text. The following are the attributes −AttributeValueDescriptionCiteURLDefines a URL to another document which explains why the text was deleted.DatetimeYYYYMMDD HH:MM:SSDefines the date and time the text was deleted.ExampleYou can try to run the following code to display deleted text − ... Read More

Ankith Reddy
288 Views
Use the tag to create a command/ menu item that the user can invoke from a popup menu in HTML5. The HTML tag is used for defining a menu item for a menu.The following are the attributes of the tag −AttributeValueDescription checked checked defines that a menuitem should ... Read More
Selects all elements and all elements with CSS
Ankith Reddy
Updated on 24-Jun-2020 07:04:40
284 Views
To style, more than one element, use a comma. Separate each element with the comma to achieve this. You can try to run the following code to select and elements, ExampleLive Demo div, p { ... Read More

Ankith Reddy
284 Views
To style, more than one element, use a comma. Separate each element with the comma to achieve this. You can try to run the following code to select and elements, ExampleLive Demo div, p { ... Read More

Ankith Reddy
59 Views
Use the transition-timing-function property to set the speed curve of the transition effect. The values you can set are ease, ease-in, ease-out, linear, etc.You can try to run the following code to set the speed curve of the transition effect with CSSExampleLive Demo ... Read More

Ankith Reddy
177 Views
To select elements whose attribute value begins with a specified value, use the [attribute^=”value”] selectorYou can try to run the following code to implement the [attribute^=”value”] selector,ExampleLive Demo [alt^=Tutor] { border: 5px solid blue; border-radius: 5px; }

Ankith Reddy
259 Views
Use the animation-timing-function property, with the linear value to set animation with the same speed from start to end with CSSExampleLive Demo div { width: 150px; height: ... Read More

Ankith Reddy
491 Views
A process dumps core when it is terminated by the operating system due to a fault in the program. The most typical reason this occurs is that the program accessed an invalid pointer value like NULL or some value out of its memory area. As part of that process, the ... Read More

Ankith Reddy
91 Views
Use the animation-iteration-count property to set the number of times an animation should be played with CSS.You can try to run the following code to implement the animation-iteration-count propertyExampleLive Demo div { width: ... Read More