Manisha Chand

Manisha Chand

Words That Decode Code

About

A Passionate technical content writer with hands-on experience in C++, Java, Python, and JavaScript. I create clear, easy-to-follow tutorials and guides for beginners as well as professional developers. Skilled in HTML, CSS, SQL, and Machine Learning Concepts. I focus on turning complex technical topics into simple and useful content.

26 Articles Published

Articles by Manisha Chand

Page 3 of 3

Java Program to Find Even Sum of Fibonacci Series till number N

Manisha Chand
Manisha Chand
Updated on 05-Jun-2025 3K+ Views

In this article, we will learn how to find the even sum of the Fibonacci series up to a given number N. A Fibonacci series is a series where the next term is the sum of the previous two terms. An even Fibonacci series is a group of all the even numbers in the Fibonacci series. The first two terms of the Fibonacci sequence are 0 and 1. Fn = Fn-1 + Fn-2 Hence, a Fibonacci series can look like this - F8 = 0 1 1 2 3 5 8 13 or, this F8 = 1 1 2 3 5 ...

Read More

Java Program to Display All Prime Numbers from 1 to N

Manisha Chand
Manisha Chand
Updated on 05-Jun-2025 38K+ Views

In this article, we will understand how to display all the prime numbers from 1 to N in Java. All possible positive numbers from 1 to infinity are called natural numbers. A number is a prime number if its only factors are 1 and itself and cannot be divided by any other number. 11 is a prime number. Its factors are 1 and 11 itself. Some examples of prime numbers are 2, 3, 5, 7, 11, 13, and so on. 2 is the only even prime number. All other prime numbers are odd numbers. Below is a demonstration of the ...

Read More

Differences between org.simple.json and org.json libraries in Java?

Manisha Chand
Manisha Chand
Updated on 20-May-2025 3K+ Views

In Java, org.simple.json and org.json are two libraries that help in reading, writing, and manipulating JSON. But still, they are different. In this article, we are going to learn about these differences. Difference between JSON.simple vs JSON Let's see the below differences and they are - Features JSON.simple JSON ...

Read More

When to use @JsonValue annotation using Jackson in Java?\\n

Manisha Chand
Manisha Chand
Updated on 19-May-2025 6K+ Views

In Java, Jackson is a library that is used to convert JSON to Java objects and vice versa. Jackson Annotations are used during serialization and deserialization. We use these to denote or specify annotations before a particular field or method (that is declared in Java). Using an annotation before a field, we can denote whether it is a variable, is a JsonProperty, should be ignored, or what condition should be applied to it. So basically, Annotations make JSON output clearer as we required. In this Article, we will learn about ...

Read More

How to convert a JSON to Java Object using the Jackson library in Java?

Manisha Chand
Manisha Chand
Updated on 19-May-2025 42K+ Views

Jackson is a Java library that is used to convert JSON to Java objects and vice versa. Conversion of JSON to a Java object is called deserialization, and Java object to JSON is known as serialization. Both of these tasks can be done by using the Jackson library. In this article, we are going to learn how to convert JSON to Java objects using the Jackson library. Jackson Library: Convert a JSON to a Java Object The ObjectMapper class belongs to the Jackson library. This class is responsible for the serialization and deserialization of Java objects. The ObjectMapper class is used ...

Read More

How to convert a List to JSON array using the Jackson library in Java?

Manisha Chand
Manisha Chand
Updated on 29-Apr-2025 12K+ Views

JSON is used in Java applications in APIs, file storage, and data communication between systems. Sometimes, we need to convert a list into a JSON array. In this article, we will learn how to convert a list to JSON array using the Jackson library. Jackson Library It is a library that is used in Java to work with JSON data. It provides APIs to serialize Java objects into JSON and deserialize JSON back into Java objects. If you want to read more about the Jackson library, you can refer Jackson library. There are mainly three components of Jackson - ...

Read More
Showing 21–26 of 26 articles
« Prev 1 2 3 Next »
Advertisements