
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
Kiran Kumar Panigrahi has Published 392 Articles

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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

Kiran Kumar Panigrahi
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