
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
562 Views
In this article, we will learn about concurrency in Java. It allows multiple threads to execute simultaneously, sharing system resources efficiently. One of the methods provided in the Thread class for managing thread execution is the join() method. What is the join() Method? the join () function is used to ... Read More

Alshifa Hasnain
611 Views
In this article, we will learn the DatabaseMetaData getProcedureColumns() method in Java. In Java getProcedureColumns(), allows us to retrieve information about the input and output parameters of stored procedures in a database. What is getProcedureColumns()? The getProcedureColumns() method of DatabaseMetaData retrieves a ResultSet containing details about the parameters (input, ... Read More

Alshifa Hasnain
4K+ Views
JavaScript is a lightweight, interpreted programming language. It is designed for creating network-centric applications. It is complementary to and integrated with Java. It is very easy to implement because it is integrated with HTML. It is open and cross-platform. Limitations We cannot treat JavaScript as a full-fledged programming language. It ... Read More

Alshifa Hasnain
713 Views
In this article, we will learn about different basic array methods in JavaScript. Adding and Removing Elements Some basic JavaScript array methods for adding and removing elements − ... Read More

Alshifa Hasnain
542 Views
In this article, we will learn to divide a number into smaller random ints in Java. Dividing a number into smaller random integers is a useful technique in various applications such as resource allocation, gaming, and randomization processes Divide a Number into Random Parts The approach relies on generating unique ... Read More

Alshifa Hasnain
653 Views
In this article, we will learn the DatabaseMetaData getProcedures() method in Java. In Java, the DatabaseMetaData.getProcedures() method is used to retrieve information about stored procedures available in a database. What is getProcedures()? The getProcedures() method of the DatabaseMetaData interface returns a ResultSet containing metadata about stored procedures available in a ... Read More

Alshifa Hasnain
587 Views
In this article, we will learn the DatabaseMetaData getTypeInfo() method in Java. The DatabaseMetaData.getTypeInfo() method in Java retrieves information about the supported data types in a database. What is getTypeInfo()? The getTypeInfo() method of the DatabaseMetaData interface returns a ResultSet containing information about all the data types supported by the ... Read More

Alshifa Hasnain
4K+ Views
JavaScript is a case-sensitive language. This means that the language keywords, variables, function names, and any other identifiers must always be typed with a consistent capitalization of letters. So the identifiers Time and TIME will convey different meanings in JavaScript. What Does Case-Sensitive Mean in JavaScript? Case sensitivity in programming refers to ... Read More

Alshifa Hasnain
815 Views
In this article, we will learn to convert string to date in Java. In Java, dates are provided as strings, and it becomes necessary to convert these strings into Date objects for further processing. Problem Statement The goal is to convert the date strings in various formats into Date or ... Read More

Alshifa Hasnain
690 Views
In this article, we will learn the difference between JavaScript undefined and void(0). Though they may appear similar, they serve distinct purposes and can be used in different scenarios. What is JavaScript undefined? undefined means a variable declared, but no value has been assigned. It is a primitive value automatically assigned ... Read More