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
AmitDiwan has Published 10744 Articles
AmitDiwan
136 Views
Tensorflow is a machine learning framework that is provided by Google. It is an open-source framework used in conjunction with Python to implement algorithms, deep learning applications and much more. It is used in research and for production purposes. It has optimization techniques that help in performing complicated mathematical operations ... Read More
AmitDiwan
177 Views
Tensorflow is a machine learning framework that is provided by Google. It is an open-source framework used in conjunction with Python to implement algorithms, deep learning applications and much more. It is used in research and for production purposes.Keras was developed as a part of the research for the project ... Read More
AmitDiwan
135 Views
We are required to write a JavaScript function that takes in an array of positive integers as the first argument and a positive integer as the second argument.The function should figure out and return the length of the smallest subarray that we should delete from the original array in order ... Read More
AmitDiwan
221 Views
We are required to write a JavaScript function that takes in an array of numbers. The array given as an input to the function have two special properties −The length of the array will always be an even number.The number of even numbers and the number of odd numbers in ... Read More
AmitDiwan
133 Views
We are required to write a JavaScript function that takes in a character string as the first and the only argument.The function should try and re-organize the characters present in the string such that no two identical characters are placed adjacent to each other.If there exists at least one such ... Read More
AmitDiwan
129 Views
We are required to write a JavaScript function that takes in two arrays of numbers, lets call them arr1 and arr2.The function should build a third array based on the two input arrays that contains all the elements that are common to both arr1 and arr2.Note that if there are ... Read More
AmitDiwan
623 Views
We are required to write a JavaScript function that takes in an array of Numbers as the first and the only argument.The job of our function is to sort the elements present in the array in an alternate fashion.By alternate we mean the following −Suppose we have an array arr ... Read More
AmitDiwan
418 Views
Suppose we have an array of positive integers that represents the number of citations a particular researcher has conducted over a period of time.We are required to write a JavaScript function that takes in one such array and the function should find the h-index of that researcher based on the ... Read More
AmitDiwan
105 Views
We are required to write a JavaScript function that takes in three arguments, namely −arr --> an array of integers m --> a positive integer n --> a positive integerThe task of our function is to find out whether there exists two such elements (lets call them a1 and a2) ... Read More
AmitDiwan
572 Views
We are required to write a JavaScript function that takes in an array of numbers as the first and the only argument.The function should string together the numbers present in the array such that form the greatest possible number that can be formed from those given set of numbers.For example ... Read More