Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
Kotlin Program to Reverse a Number
In this article, we will understand how to print an integer in Kotlin. The reverse of a number is computed using a loop and arithmetic operator % and /. Below is a demonstration of the same − Suppose our input is − The number : 123456 The desired output would be − The result is 654321 Algorithm Step 1 − START Step 2 − Declare two integer values namely myInput and reversed. Step 3 − Define the values Step 4 − Run a while loop Step 5 − Use modulus of 10 and get remainder for ‘myTemp’ ...
Read MoreKotlin Program to Count Number of Digits in an Integer
In this article, we will understand how to count the number of digits in an integer. The digits in an integer are counted using a loop and a counter. Below is a demonstration of the same − Suppose our input is − Number : 15161718 The desired output would be − The result is : 8 Algorithm Step 1 − START Step 2 − Declare two integer values namely count and myInput. Step 3 − Define the values Step 4 − Using a while loop, divide the input value by 10 until the number is reduced to ...
Read MoreKotlin Program to Display Fibonacci Series
In this article, we will understand how to find even sum of Fibonacci series till number N. A Fibonacci series is sequence of numbers formed by the sum of its two previous integers. An even Fibonacci series is all the even numbers of the Fibonacci series. A Fibonacci series till number N i.e., 10 can look like this − 0 1 1 2 3 5 8 13 21 34 Below is a demonstration of the same − Suppose our input is − The input : 15 The desired output would be − The Fibonacci series till 15 terms: 0 ...
Read MoreFuzzy Logic and Probability: The Confusing Terms
In this article, you will understand the difference between fuzzy logic and probability. Fuzzy logic It is a many-valued logic where the truth value of variables may be a real number between 0 and 1, including 0 and 1. Everything is associated with a degree. It is based on natural language processing. It can be integrated with programming. It is best suited for approximation. It is generally used by quantitative analysts. It helps understand the concept of vagueness. It captures the meaning of partial truth. The degree of membership is in a set. It is used in air conditioners, ...
Read MoreWhat is Text Annotation and its Types in Machine Learning?
Text annotation identifies and labels sentences with metadata to define characteristics of sentences. This could be highlighting parts of speech, grammar, phrases, keywords, emotions, and so on depending on the project. The better the quality and quantity of data, the better the model performs. In this article, you will understand different text annotation methods. 1. Sentiment Annotation Based on the emotion/sentiment associated with the response, the text is annotated. Sarcasm filled text should be understood as is, rather than being termed negative or positive. Sentiment is an important aspect here. Every sentence needs to be labelled based on the available ...
Read MoreTop 10 Benefits of Machine Learning in Businesses
The field of machine learning is developing rapidly, and the benefits are innumerable. Some of the benefits in the field of business have been listed below − Improved Consumer Experience Human efforts to interact with consumers have reduced and bots are used instead. This has helped with the automated and travail responses that are required at times. Human resources can be used for better tasks as well. Resource Planning Since patterns can be detected from data, the resources required can be planned, and can be utilised efficiently. This way, machine learning makes businesses cost effective too. Effective Predictions Predictions based ...
Read MoreDifference between YOLO and SSD
YOLO and SSD are real-time object detection systems that possess significant differences, that have been listed below − YOLO (You Only Look Once) YOLO uses a neural network to help with real-time object detection. It became popular due to its speed and accuracy. It is considered a regression problem, where the algorithm looks at the object/s only once. There are algorithms associated with YOLO that achieve 155 FPS (frames per second). Image is divided into a grid, and every grid calculates class probabilities and bounding box parameters to determine the object in its entirety. It is an open-source detection ...
Read MoreTypes of Cloud Computing and Cloud Services
One of the terms used most frequently in information technology nowadays is cloud computing. The term cloud computing refers to the delivery of IT resources on the demand of users. We can store the files in different remote locations by utilizing cloud computing, providing us with security, scalability, abstraction, etc. In simple terms, cloud service providers manage the servers and storage devices as they have high-quality devices and maintenance teams and provide the IT resources to organizations or individual users according to their requirements. Types of Cloud Computing Public Cloud Public clouds are cloud environments generally created by third parties ...
Read MoreWhy do Companies Need a Flexible, Scalable Cloud System?
The cloud is a technology that offers organizations flexibility, agility, and scalability in a world that is becoming more linked. The amount of data being processed by organizations is increasing, and the cloud provides a secure haven for storing, exchanging, and accessing this enormous amount of data. What is a flexible cloud system? The best cloud computing techniques offer adaptability. The services are now quite flexible and may be modified based on an organization's operational needs. Companies can modify the resource allocation on the production line thanks to cloud services. The primary benefit of cloud services is that you only ...
Read MoreWhich are the 6 Fundamental Microsoft Cloud Services
Microsoft is one of the biggest and most established cloud service platforms. The company offers a wide range of cloud services, including PaaS (Platform as a Service), IaaS (Infrastructure as a Service), and SaaS (Software as a Service). You may rent the software or hardware you want through cloud computing using MS Cloud services for a monthly rental fee. Fundamental Microsoft Cloud Services Microsoft Azure Microsoft Azure is a platform for interoperable cloud computing services that blends closed-source, standards-based technology with proprietary Microsoft and outside solutions. Because Azure's pricing is based on resource usage rather than reserved capacity, there is ...
Read More