Sunidhi Bansal has Published 1100 Articles

Count pairs with Bitwise-AND as even number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 09:15:58

106 Views

We are given an integer array and the task is to count the total number of pairs that can be formed using the given array values such that the AND operation on the pairs will result in an even number.The truth table for AND operation is given belowABA^B000100010111Input − int ... Read More

Count pairs with Bitwise AND as ODD number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 09:12:59

87 Views

We are given an integer array and the task is to count the total number of pairs that can be formed using the given array values such that the AND operation on the pairs will result in an odd number.The truth table for AND operation is given belowABA^B000100010111Input − int ... Read More

Count of parallelograms in a plane in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 09:08:00

80 Views

We are given a plane containing points forming the parallelogram and the task is to calculate the count of parallelograms that can be formed using the given points. In parallelograms opposite sides of a quadrilateral are parallel and therefore opposite angles are equal.Input −int a[] = {0, 2, 5, 5, ... Read More

Count set bits in a range in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 09:03:11

261 Views

We are given an integer number let’s say, num and the range with left and right values. The task is to firstly calculate the binary digit of a number and then set the loop from the left digit till the right digit and then in the given range calculate the ... Read More

Count set bits in an integer in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 09:00:28

4K+ Views

We are given an integer number let’s say, num and the task is to firstly calculate the binary digit of a number and then calculate the total set bits of a number.Set bits in a binary number is represented by 1. Whenever we calculate the binary number of an integer ... Read More

Count total bits in a number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 08:58:20

5K+ Views

We are given an integer number let’s say, num and the task is to firstly calculate the binary digit of a number and calculate the total digits of a number.Input − int number = 50Output − Count of total bits in a number are − 6Explanation − Binary representation of ... Read More

Count Uppercase, Lowercase, special character and numeric values in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 08:55:06

8K+ Views

We are given a string containing Uppercase letters, Lowercase letters, specials characters and number values also. The task is to calculate the frequency of all types of characters, special characters and numeric values in the string.Uppercase Letters − A - Z having ASCII values from 65 - 90 where, 65 ... Read More

Count words in a given string in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 08:50:51

4K+ Views

We are given with a sentence or string containing words that can contain spaces, new line characters and tab characters in between. The task is to calculate the total number of words in a string and print the result.Input − string str = “welcome to tutorials point\t”Output − Count of ... Read More

Counting frequencies of array elements in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 08:48:21

15K+ Views

We are given an array of integer elements which contains duplicate values and the task is to calculate the frequencies of the distinct elements present in an array and print the result.Input − int arr[] = {1, 1, 2, 3, 4, 1, 2, 3}Output −frequency of 1 is: 3 frequency ... Read More

Count of all even numbers in the range [L, R] whose sum of digits is divisible by 3 in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 31-Aug-2020 08:43:35

232 Views

We are given two numbers L and R that define a range [L, R]. The goal is to find all numbers between L and R that are even, and sum of whose digits is divisible by 3.We will do this by calculating the sum of digits of all even numbers ... Read More

Advertisements