Thanks to visit codestin.com
Credit goes to www.tutorialspoint.com

Sudhir sharma has Published 1149 Articles

How to Keep Your Browser Safe on Work and Home Networks (with an Optional Chrome VPN Layer)

sudhir sharma

sudhir sharma

Updated on 08-Sep-2025 18:23:26

255 Views

A single thoughtless click on a browser tab can cause hours of frantic IT calls, network scans, and security resets in numerous workplaces. Sometimes, when you seek a recipe or a good offer online, you end up with pop-ups or phishing attempts that are not good. These things happen all ... Read More

10 Essential Web Scraping Tools for Data Collection in 2025

sudhir sharma

sudhir sharma

Updated on 08-Aug-2025 10:43:32

146 Views

Data is more than just a business asset – it's a strategic advantage. Whether you're monitoring competitors, tracking product prices, gathering SEO insights, or creating machine learning models, relevant and structured web data is the modern gold. That’s where web scraping can become your winning strategy. Web scraping is the ... Read More

C/C++ Program to Count number of binary strings without consecutive 1’s?

sudhir sharma

sudhir sharma

Updated on 04-Aug-2025 18:35:51

343 Views

In this article, we will learn how to count all distinct binary strings of length n such that no two 1's appear consecutively. We'll explore this problem using both recursive and dynamic programming approaches in C and C++. What is a Binary String? A binary string is a sequence ... Read More

C/C++ Program for Finding the Number Occurring Odd Number of Times?

sudhir sharma

sudhir sharma

Updated on 01-Aug-2025 17:48:12

423 Views

In this article, we implement a C++ program to find the number that occurs an odd number of times in an array, using different approaches. We are given an array containing multiple elements, and our task is to identify the number that appears an odd number of times. For ... Read More

Absolute Difference of even and odd indexed elements in an Array in C++?

sudhir sharma

sudhir sharma

Updated on 01-Aug-2025 16:58:01

978 Views

An array in C++ is a collection of elements of the same data type stored in contiguous memory locations. Arrays provide a way to store multiple values using a single variable name, and each element can be accessed using an index starting from 0. Even and Odd Indexed Elements ... Read More

How to compare float and double in C++?

sudhir sharma

sudhir sharma

Updated on 31-Jul-2025 16:10:44

783 Views

In C++, floating-point numbers are used to represent decimal values. The most commonly used floating-point types are float and double. These data types differ in their size, precision, and use cases. Understanding how to use and compare them correctly is important for accurate computations. Understanding Float and Double Precision ... Read More

Delete Node in a Linked List in Python

sudhir sharma

sudhir sharma

Updated on 31-Jul-2025 12:49:23

4K+ Views

A linked list is a linear data structure where each element is a separate object, commonly referred to as a node. Each node contains two fields: the data and a pointer to the next node in the list. In this article, we'll learn how to delete a node from a ... Read More

Array sum in C++ STL

sudhir sharma

sudhir sharma

Updated on 21-Jul-2025 18:59:36

37K+ Views

The array sum refers to the sum of all elements in an array. The STL library of C++ provides built-in functions to easily calculate the sum of elements in an array. In this article, we will explain all those STL functions with examples. Consider the following input/output scenario ... Read More

Amazing hacks of Python

sudhir sharma

sudhir sharma

Updated on 14-Jul-2025 15:42:30

215 Views

Python is one of the programming languages known for its simple syntax, readability. Whether working on development, data analysis, or automation, Python provides the tools to get the task done with less effort. But beyond the basics, Python has some hacks that make the code not only shorter but ... Read More

Sum of the Series 1 + x/1 + x^2/2 + x^3/3 + .. + x^n/n in C++

sudhir sharma

sudhir sharma

Updated on 01-Jul-2025 15:33:23

2K+ Views

In this article, we are given a mathematical series. Our task is to write a program to find the sum of the series 1 + x/1 + x^2/2 + x^3/3 + .. + x^n/n. This can also be represented as: $$ 1+\displaystyle\sum\limits_{k=1}^n \left(\frac{x^k}{k}\right) $$ ... Read More

1 2 3 4 5 ... 115 Next
Advertisements