Rudradev Das has Published 80 Articles

Strong Password Suggester Program

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 17:16:05

452 Views

Every year on 7th May the worldwide organizations remind there users about the significance of a strong password. As per the tech giant Google; 24% of their end users have used the word "password" or "Qwerty" as their account password. While, only 34% from their total users change their ... Read More

Java Program To Reverse A Number And Check If It Is A Palindrome Number

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 17:02:17

869 Views

What is a Palindrome Number? If a number is given( two, three, or four-digit number) and reversing each individual number with the positions from front to back and then vice versa , and then if the number output is the same after reversing all the elements then it is said ... Read More

Java Program to Search an Element in a Circular Linked List

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 15:01:43

259 Views

What are Liked List and Circular Linked List? Linked list is data structure in which every node contains two parts, a data and address path. These parts point to a next node, which always creates an interlinking with previous nodes. Based on this, a circular linked list is where ... Read More

Java Program to Save a String to a File

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 15:00:14

756 Views

Strings, the series of characters, used in Java programming enable to save memory consumption and boost the performance. We can save a string to a file using Java Program can be initiated in multiple ways and has been introduced in Java version 11. Four parameters can be used to save ... Read More

Java Program to Rotate an Image

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:57:24

2K+ Views

A image file can rotated clockwise or anticlockwise direction. To rotate an image it is needed to download a random image file and save it in any folder on your system. Further, a .pdf file is required to create and rotate some degrees after opening the downloaded image in that ... Read More

Java Program To Reverse A Number And Find the Sum of its Digits Using Do-While Loop

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:53:26

2K+ Views

What Is A Do-While Loop? Do-while loop is a Java environment used to iterate a portion of a code in a repeat manner. The process will run in a continuous way until the specified condition becomes satisfied as a true condition. It is always recommended for a do-while loop to ... Read More

Java Program to Reverse a List

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:41:05

16K+ Views

What is a Reverse List? Reverse a list is an operation of swapping or interchanging the elements position into a particular list. While you are writing a code in Java, you can easily reverse the order of a certain flow. It is a conventional way of any programming language in ... Read More

Java Program To Reverse A Linked List Without Manipulating Its Pointers

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:36:14

1K+ Views

Linked List and Pointers In Java Linked list is liner data structure in Java environment, which use to store the elements in an adjacent manner. A linked list contains with some addresses and pointers which are used to create a link between the elements present in a list. There ... Read More

Java Program to Return the Largest Element in a List

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:31:37

2K+ Views

We can use an array loop to return back the largest element from a list. Primarily this method, known as the comparison model. The maximum number present here in a certain list will be compared with the all elements present in that particular list. The process considers ā€œnā€ as a ... Read More

Java Program to return the elements at the odd position in a list

Rudradev Das

Rudradev Das

Updated on 31-Mar-2023 14:26:30

540 Views

What Is the Odd Position in A List? In a Java environment, printing a return value at odd positions of the elements can perform by a control flow statement in an array list. A control flow statement checks the odd positions on the basis of step size in Java. A ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements