
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
Samual Sam has Published 2310 Articles

Samual Sam
170 Views
In this article, we will discover how we can check whether a value entered is an ASCII 7-bit alphabetic character in Java. This process involves whether a character belongs to the ranges 'a' to 'z' or 'A' to 'Z' in the ASCII table. The character can be checked with some ... Read More

Samual Sam
122 Views
In this article, we will learn how to print a sublist of an ArrayList in Java using the subList() method. The ArrayList class in Java provides a dynamic array for storing elements. The subList() method returns a portion of the list based on specified indices. Problem StatementGiven an ArrayList ... Read More

Samual Sam
195 Views
In this article, we'll learn how to check whether the entered value is ASCII 7-bit alphabetic lowercase in Java. In ASCII, the lowercase alphabets begin with the character ‘a’ and end with ‘z’. We will write a program checking whether a character is a lowercase alphabetic character using a ... Read More

Samual Sam
147 Views
In this article, we will learn how to create BigDecimal values in Java using strings. The BigDecimal class provides a way to handle large or precise numbers, making it useful for high-precision arithmetic. By creating BigDecimal objects from strings, we make sure that the exact number is represented without any ... Read More

Samual Sam
22K+ Views
Dereferencing is used to access or manipulate data contained in memory location pointed to by a pointer. *(asterisk) is used with pointer variable when dereferencing the pointer variable, it refers to variable being pointed, so this is called dereferencing of pointers. int main() { int a = 7, b ; ... Read More

Samual Sam
180 Views
In this article, we will learn how to use the Clock.fixed() method in Java to obtain a fixed instant on the clock. This method, part of the java.time package is primarily used for testing purposes. It requires two parameters: a fixed Instant and a ZoneId (time zone). The Clock.fixed() method ... Read More

Samual Sam
238 Views
In this article, we will learn how to use the instant() method in the Clock class in Java to obtain the current instant of a clock object. This method requires no parameters and returns an Instance representing the current timestamp of the clock. The Instant class is a part of the ... Read More

Samual Sam
516 Views
In this article, we will learn how to format date and time in Java using the Formatter and Calendar classes. The Formatter class allows for flexible string formatting, and the Calendar class is useful for retrieving and manipulating date and time values. We will use these classes to display the ... Read More

Samual Sam
861 Views
In this article, we will learn to subtract the week from the current date using Java. This is useful when you need to manipulate dates, such as calculating dates from previous weeks for scheduling or tracking purposes. We'll use two approaches: using the Calendar class and the LocalDate class, showcasing ... Read More

Samual Sam
558 Views
In this article, we will learn how to format numbers in Java using the NumberFormat class from the java.text package. The NumberFormat class provides methods for formatting numbers based on Locale settings, which is useful for creating internationalized Java applications. Using the NumberFormat.getInstance() method, we can format double, ... Read More