Kiran Kumar Panigrahi has Published 426 Articles

Difference between RAM and ROM

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 01-Sep-2023 02:49:10

71K+ Views

In computer systems, memory is a hardware component of the system that stores data and information in the computer. The computer memory can be classified into two main types namely – primary memory and secondary memory. The primary memory is further divided into two main types – RAM and ROM. ... Read More

Difference Between Microprocessor and Microcontroller

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 31-Aug-2023 01:46:56

166K+ Views

Both microprocessors and microcontrollers are types electronic devices that come in the form of integrated circuits (ICs) and are used in different modern electronic equipment such as computers, laptops, washing machines, air conditioners, and many other automated electronic gadgets. The primary function of both microprocessors and microcontrollers is to automate ... Read More

How to get the longitude and latitude of a city using Python?

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 29-Aug-2023 03:28:47

25K+ Views

To get the longitude and latitude of a city, we will use the geopy module. geopy uses third-party geocoders and other data sources to locate the coordinates of addresses, cities, countries, etc.First of all, make sure the geopy module is installed −pip install geopyIn the following example, we will use ... Read More

How to put a border around a Frame in Python Tkinter?

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 28-Aug-2023 11:56:44

27K+ Views

To put a border around a Frame in Tkinter, we have to use the highlightbackground and highlightthickeness parameters while creating the Frame. Let's take an example and see how to use these two parameters.Steps −Import the tkinter library and create an instance of tkinter frame.Set the size of the frame ... Read More

Difference between Machine learning and Artificial Intelligence

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 23-Aug-2023 18:39:46

724 Views

Artificial Intelligence and Machine Learning play an important role in anything that is remotely related to Automation. AI and ML are the most advanced and popular technologies used for creating intelligent systems in different fields of engineering and science. Although AI and ML are correlated, they are quite different from each other. AI ... Read More

How to place an image into a frame in Tkinter?

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 22-Aug-2023 16:51:03

72K+ Views

To place an image into a Tkinter frame, you can follow the steps given below −Steps −Import the required libraries and create an instance of tkinter frame. To open an image and place it inside the frame, we will use the Pillow (PIL) library.Set the size of the frame using ... Read More

Difference between Volatile Memory and Non-Volatile Memory

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 12-Jul-2023 14:35:17

9K+ Views

Volatile memory and non-volatile memory are two distinct types of computer memory with significant differences in terms of their functionality and data storage characteristics. Volatile memory is used for temporary storage and loses its data when the power is removed, while non-volatile memory is used for permanent or long-term storage ... Read More

Difference between Long-Term and Short-Term Scheduler

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 12-Jul-2023 14:27:53

2K+ Views

In the context of computer systems, a program or task in execution is called a process. In modern computers, several types of processes are used. The process of selecting one process from a bunch of processes and assigning it to the processor for execution is referred to as scheduling. The ... Read More

Difference between Classification and Clustering

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 12-Jul-2023 14:10:56

759 Views

The most basic difference between classification and clustering is that classification is used with supervised learning technique, whereas clustering is used with unsupervised learning technique. In classification, the computer is given a label to use in classifying new observations. For the label verification in this case, the machine requires ... Read More

Difference between Object and Class in Java

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 23-Jun-2023 13:45:54

972 Views

Classes and objects are considered as the building blocks of object-oriented programming. Every entity with state and behavior is an object. Collection of these similar kinds of objects is a class. A class can be only accessed by its objects hence securing data in it. Read this article to learn ... Read More

Previous 1 ... 4 5 6 7 8 ... 43 Next
Advertisements