C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits Inverted in Their Position The program must accept an integer N as the input. The task is to count and print the number of digits in N whose position (from the rightmost…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Both Prime and Even The program must accept an integer N as the input. The task is to count and print the number of digits that are both prime and even in the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Zeroes Surrounded by the Same Digit The program must accept an integer N as the input. The task is to count the number of zeroes in the number which are surrounded by the same…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count Digits That Are Fibonacci Numbers The program must accept an integer N as the input. The task is to count and print the number of digits in N that are Fibonacci numbers. If no…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Count of Digits That Are Less Than Previous Digit The program must accept an integer N as the input. The task is to count and print the number of digits in N that are less than their immediate…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Bits Count – Y to X The program must accept two integers X and Y where X is always greater than or equal to Y. The program must print the count of bits C that…
C Python2 Min Read LetuscrackonJune 12, 2024 LRU Cache – Miss Count The least recently used (LRU) cache algorithm evicts the element from the cache that was least recently used when the cache is full. After an…
Python1 Min Read LetuscrackonJune 12, 2024 Consecutive Vowels Count Given a string S1, print the count C which represents the number of times a vowel is followed by another vowel in the string S1. Input…
Java1 Min Read LetuscrackonJune 12, 2024 JAVA – Static Members – Department Count The main method in Hello.java is as shown below. Define the class Student.java by filling in the code so that the program…
Java1 Min Read LetuscrackonJune 11, 2024 JAVA – File Handling – Count 1s An array of N integers is given in a file. The program must print the number of 1s in the input. The name of the file is stored in the…