Kiran Kumar Panigrahi has Published 392 Articles

Differences between Computer Architecture and Computer Organization

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 13-Sep-2023 13:03:46

43K+ Views

Computer Architecture is a functional description of the design implementation and requirements of different components of a computer, while Computer Organization provides information about the linking of different operational attributes of the computer system. Read this tutorial to learn more about "computer architecture" and "computer organization" and how they are ... Read More

Difference between DDL and DML in DBMS

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 12-Sep-2023 02:13:39

39K+ Views

Anybody dealing with databases must comprehend the distinction between DDL and DML commands because it has an impact on how data is saved, accessed, and modified. A collection of commands called DDL are used to specify a database's structure. Database objects including tables, views, indexes, and constraints can be ... Read More

Difference between Primary key and Foreign key in Database

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 12-Sep-2023 01:24:28

32K+ Views

In a relational database, keys are the most important elements to maintain the relationship between two tables or to uniquely identify the data from a table. Primary key is used to identify data uniquely therefore two rows can't have the same primary key. It can't be null. On the other ... Read More

Difference between WiFi and Internet

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 12-Sep-2023 01:02:59

28K+ Views

WiFi is a wireless network that is used to connect nearby devices with each other and share the Internet via hotspots. The Internet, on the other hand, is a global network of networks where computers communicate with each other via Internet Protocol. Go through this article to find out more ... Read More

Difference Between & and && in C Programming

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 11-Sep-2023 12:40:35

22K+ Views

The "&" and "&&" operators are both logical AND operators in most programming languages, but they can behave differently in certain circumstances. Both "&" and "&&" are operators used for evaluating conditional statements. The most basic difference between the two is that the "&" operator is a logical as well ... Read More

Difference between combinational and sequential circuit

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 07-Sep-2023 01:02:47

36K+ Views

In digital electronics, both combinational and sequential circuits are the most widely used circuits. These are two broad categories of circuits defined in the digital electronics where one type of circuit is independent of time and other is dependent on time. Read this article to find out more about combinational ... Read More

Difference Between Top-down and Bottom-up Approach

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 06-Sep-2023 21:26:28

70K+ Views

In the top-down approach, a bigger module/problem is divided into smaller modules. In contrast, in the bottom-up approach, the smaller problems are solved and then they are integrated to find the solution of a bigger problem. Read this article to learn more about top-down approach and bottom-up approach and how ... Read More

Difference between Bottom-Up Model and Top-Down Model

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 06-Sep-2023 10:32:47

43K+ Views

In System Design, there are two types of approaches followed namely, the Bottom-Up Model and the Top-Down Model. The bottom-up model is one in which the different parts of a system are designed and developed and then all these parts are connected together as a single unit. On the ... Read More

How to stop event propagation in Python Tkinter?

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 05-Sep-2023 11:39:11

993 Views

Tkinter events are very powerful in handling the different objects and attributes of the widgets as well as the elements of an application. There are events such as mouse events and keyboard button events that can be handled by binding the event or callback function with the button. Let us ... Read More

Python: How to update tkinter labels using a loop?

Kiran Kumar Panigrahi

Kiran Kumar Panigrahi

Updated on 05-Sep-2023 11:35:19

2K+ Views

We normally use the Tkinter Label widget to display text and images in an application. Let us assume that we want to create an application such that the Label widget continuously gets updated with a value whenever the application executes. To achieve this, we will use a StringVar object and ... Read More

Advertisements