
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
6K+ Views
Knowledge-based agents represent searchable knowledge that can be reasoned. These agents maintain an internal state of knowledge, take decisions regarding it, update the data, and perform actions on this data based on the decision. Basically, they are intelligent and respond to stimuli like how humans react to different situations. Examples − ... Read More

AmitDiwan
500 Views
TensorFlow Lite is a mobile library designed to deploy models on mobile, microcontrollers and edge devices. It comes with tools that enable on-device machine learning on mobile devices using 5 aspects − latency, privacy, connectivity, size, and power consumption. It provides support on Android, iOS, embedded Linux and microcontrollers. Supports ... Read More

AmitDiwan
781 Views
TensorFlow TensorFlow is an open-source end-to-end platform to build machine learning applications. It was developed by researchers and developers at Google Brain. Let us now see the features of TensorFlow − Build and Train models easily − TensorFlow offers multiple levels of abstraction to make it quick for you to ... Read More

AmitDiwan
582 Views
Artificial intelligence deals with programming computers to detect patterns in new data, make decisions based on user input, and give output based on the user input. All the rules are not explicitly defined and it is expected by the developer that the machine learns these rules by experience, using a ... Read More

AmitDiwan
502 Views
In this article, you will understand the significant differences between Tensorflow and Keras libraries.TensorFlowTensorFlow is an open-source end-to-end platform to build machine learning applications. It was developed by researchers and developers at Google Brain. Let us now see the features of TensorFlow − Build and Train models easily − TensorFlow ... Read More

AmitDiwan
400 Views
In this article, you will understand the significant differences between Tensorflow and Theano libraries.TensorFlowIt is an open-source end-to-end platform to build machine learning applications and was developed by researchers and developers at Google Brain. Let us now see the features of TensorFlow − Ecosystem of powerful add-on libraries − ... Read More

AmitDiwan
987 Views
In this article, we will understand how to print a multiplication table. Multiplication table is created by iterating the required input 10 times using a for loop and multiplying the input value with numbers from 1 to 10 in each iteration. Below is a demonstration of the same − Suppose ... Read More

AmitDiwan
2K+ Views
In this article, we will understand how to round a number to n decimal places. Rounding of decimal values are done using the ceil() or floor() functions. Below is a demonstration of the same − Suppose our input is Input : 3.1415 The desired output would be − Output ... Read More

AmitDiwan
905 Views
In this article, we will input the Principal Amount, Rate and Time (Years) from the user to find the Simple Interest and Compound Interest − Simple Interest − The percentage interest on total principal amount. Returns are less compared to Compound Interest. Compound Interest − The percentage interest charged ... Read More

AmitDiwan
410 Views
In this article, we will understand how to sort the elements of an array in Lexicographical order in Kotlin. The lexicographical order is a generalization of the alphabetical order of the dictionaries to sequences. Below is a demonstration of the same − Suppose our input is − Alpha Beta Gamma ... Read More