Rudradev Das has Published 79 Articles

Function to copy string (Iterative and Recursive)

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 17:52:51

374 Views

In a C++ environment, iteration statement is a compound or cause statement which can be executed zero or more than one at a time. This process is subjected to a loop termination process. The statement executes in a particular order when there is a presence of break statement or the ... Read More

Transform a string such that it has abcd..z as a subsequence

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 17:51:10

122 Views

Transforming a string aka string transformation is an operation in C++ by which the result stores in an output array after the execution of the whole process. In C++ there is a function called "transform()", present in the directory of the C++ environment by which we can transform a string ... Read More

Strong Password Suggester Program

Rudradev Das

Rudradev Das

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

536 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 Search an Element in a Circular Linked List

Rudradev Das

Rudradev Das

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

278 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 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 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

625 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