
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Mr. Satyabrata has Published 355 Articles

Mr. Satyabrata
21K+ Views
In Java, Array is a non-primitive data type which stores values of similar data type. As per the problem statement we have to detect which element is repeated maximum times in an array for maximum number of times and print its frequency. An array can contain duplicate values as well. ... Read More

Mr. Satyabrata
7K+ Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. As per the problem statement we have to find the union of two arrays. Union refers to joining together whereas union of arrays refers to the new array combining all unique ... Read More

Mr. Satyabrata
14K+ Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. As per the problem statement we have to find the element which is present in the middle of the array. If the array contains odd number of elements, then you will ... Read More

Mr. Satyabrata
3K+ Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. As per the problem statement we have to find the largest palindrome in an array. A number is said to be a palindrome number if after reversing the same number it ... Read More

Mr. Satyabrata
561 Views
In Java, Array is a non-primitive data type which stores values of similar data type. As per the problem statement we have to find the frequency of each element i.e how many times each element is occurring in an array. Let’s see how we can do it by using the ... Read More

Mr. Satyabrata
1K+ Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. As per the problem statement we have to find an index such that the sum of elements at lower indexes is equal to the sum of elements at higher indexes and ... Read More

Mr. Satyabrata
5K+ Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data types. As per the problem statement we have to find a cumulative sum array which means array elements will be updated with the sum of the current element and all previous elements. ... Read More

Mr. Satyabrata
654 Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. As per the problem statement we have to check if the given arrays are disjoint. An array is said to be disjoint if two arrays have no element in common i.e. ... Read More

Mr. Satyabrata
2K+ Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. As per the problem statement we have to find the difference between the first largest and second largest number present in an array. Note − The array must be an integer ... Read More

Mr. Satyabrata
20K+ Views
In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. As per the problem statement we have to find the sum of two different arrays with respect to index and store it into a third array. Suppose a1[] is first array, ... Read More