
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
Karthikeya Boyini has Published 2193 Articles

karthikeya Boyini
96 Views
To implement Fade Down Left Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo .animated { background-image: url(/css/images/logo.png); ... Read More

karthikeya Boyini
76 Views
The speak-punctuation property specifies how punctuation is spoken.The possible values are −code − Punctuation such as semicolons, braces, and so on are to be spoken literally.none − Punctuation is not to be spoken but instead rendered naturally as various pauses.

karthikeya Boyini
178 Views
In typographic lingo, orphans are those lines of a paragraph stranded at the bottom of a page due to a page break, while windows are those lines remaining at the top of a page following a page break. Generally, printed pages do not look attractive with single lines of text ... Read More

karthikeya Boyini
144 Views
To implement Fade In Left Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo .animated { background-image: url(/css/images/logo.png); ... Read More

karthikeya Boyini
148 Views
To implement Fade In Right Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo .animated { background-image: url(/css/images/logo.png); ... Read More

karthikeya Boyini
156 Views
Use the grayscale effect to convert the colors of the object to 256 shaded of gray. The following parameter is used in this filter:ParameterDescriptionGrayConverts the colors of the object to 256 shades of gray.ExampleYou can try to run the following code to set grayscale effect:Live Demo ... Read More

karthikeya Boyini
128 Views
Use the :before element to insert some content before any element. ExampleYou can try to run the following code to insert some content before an element with CSS −Live Demo p:before { content: url(/images/bullet.gif) ... Read More

karthikeya Boyini
282 Views
The Java.io.StringWriter class is a character stream that collects its output in a string buffer, which can then be used to construct a string. Closing a StringWriter has no effect.The Java.io.PrintWriter class prints formatted representations of objects to a text-output stream.Using these two classes you can convert a Stack Trace ... Read More

karthikeya Boyini
3K+ Views
You can calculate the GCD of given two numbers, using recursion as shown in the following program.Exampleimport java.util.Scanner; public class GCDUsingRecursion { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("Enter first number :: "); int firstNum ... Read More