
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

Converting Code to Clarity
About
A professional technical content writer with Java programming skills. I have a desire to write informative and detailed Java articles for both beginner and professional developers. Having a strong background in HTML, CSS, JavaScript, Java, JDBC, JSP, Spring, and Hibernate.
Alshifa Hasnain has Published 283 Articles

Alshifa Hasnain
641 Views
In this article, we will learn the LinkedHashMap and LinkedHashSet in Java. LinkedHashMap Hash table and linked list implementation of the Map interface, with predictable iteration order. Example Let us see an example − import java.util.*; public class Demo { public static void main(String args[]){ ... Read More

Alshifa Hasnain
801 Views
When working with JavaScript inside HTML documents, developers may come across the CDATA section. It can be helpful when dealing with older XHTML documents or embedded JavaScript in XML-based markup. What is a CDATA Section? A CDATA (Character Data) section is a special syntax used in XML and XHTML documents ... Read More

Alshifa Hasnain
589 Views
In this article, we will learn to pass a lambda expression as a method argument in Java. A lambda expression is a short block of code that takes in parameters and returns a value. Lambda Expression Lambda expressions allow passing functionality as a method parameter, reducing the need for anonymous ... Read More

Alshifa Hasnain
602 Views
In this article, we will learn about the !! (not not) operator in JavaScript.This double negation forces a value to be evaluated as either true or false. What is the !! Operator? The double negation(!! ) operator is the! Operator twice and calculates the truth value of a value. It returns ... Read More

Alshifa Hasnain
730 Views
In this article, we will learn about JavaScript's closures and anonymous functions. JavaScript is a powerful language that allows developers to write expressive and concise code. Two concepts that often confuse beginners are closures and anonymous functions. While they share some similarities, they serve different purposes and function differently in JavaScript ... Read More

Alshifa Hasnain
690 Views
In this article, we will learn the ResultSetMetaData getColumnLabel() method in Java. When working with databases in Java, the ResultSetMetaData interface provides valuable information about the structure of a ResultSet, such as column names, types, and properties. What is getColumnLabel()? The getColumnLabel() method of the ResultSetMetaData (interface) retrieves the display name ... Read More

Alshifa Hasnain
955 Views
In this article, we will learn to globally disable an animation using jQuery. In jQuery, animations are commonly used to create smooth transitions and effects. However, there might be scenarios where you want to disable animations globally, such as improving performance on low-powered devices or creating an instant response for ... Read More

Alshifa Hasnain
6K+ Views
In this article, we will learn about the difference between null and undefined in JavaScript. In JavaScript, null and undefined represent the absence of a value, but they have different meanings and use cases. What is undefined in JavaScript? It means a variable declared, but no value has been assigned ... Read More

Alshifa Hasnain
847 Views
In this article, we will learn to add a table row in HTML. Tables are a fundamental part of web development, used to display structured data in rows and columns. In HTML, you can add table rows using the (table row) element inside a structure. Attributes The HTML ... Read More

Alshifa Hasnain
545 Views
In this article, we will learn to write a Java program to calculate the sum of cubes of the first n natural numbers. Understanding the Cube Sum Formula The sum of cubes of the first n natural numbers follows a mathematical formula − S = 13 + 23 + 33 ... Read More