In this blog you will be making your own Phone Book Management System using C Programming. Source code and explanation given below. Whole program is divided into Functions! Our whole C Program will be divided into 7 functions: askPassword (Entry point where user is asked for password to enter our system) printBars (To print beautiful bars at […]
In this blog you will be making your own Spell and Grammar checker by using opensource tool knows as LanguageTool. What is Language Tool? LanguageTool is an open-source grammar tool, also known as the spellchecker for OpenOffice. This library allows you to detect grammar errors and spelling mistakes through a Python script or through a […]
This back-end developer roadmap will guide you to start with it in the proper way. We will cover the most importan building blocks of the web. This guide will help you to become a modern back-end developer. Learn basic Front-End Development You must learn basic front-end development to get basic knowledge of how things work […]
In this blog, you will get the interview questions and answers to test your knowledge in Python and help you crack interviews. 1) What are the types of inheritance in Python? Python supports different types of inheritance, they are: Single Inheritance Multi-level Inheritance Hierarchical Inheritance Multiple Inheritance 2) What is the difference between a module, a […]
In this blog, you will get the full source code for creating a Live Chat Room using Python modules. A person can create a room and multiple users can join room by entering room name. Running our Project Below are the steps to run the project. 1. Copy the content of source code (at the end […]
In this blog, we will practicing SQL queries with solutions. This will help you improving your SQL skills. We will practice both Basic Queries as well as Nested Queries. Create the following tables with dummy data Table Name – Employee Employeeid EmployeeName Department ContactNumber Email EmployeeHeadID 351 Anirudh S-203 123456788 anirudh@xyz.com 355 352 Sanjay S-204 123456789 […]
PDF or Portable Document Format is one of the most common documents sharing format. It can have different elements like text, images, tables, or forms in the file. Since there is a lot happening in a single file, it becomes tedious to extract data out of the PDF file. In this post we will use […]
Python is known for allowing you to write code that’s simple, easy to write, and almost as easy to read as plain English. One of Python’s most remarkable features is the list comprehension. What is List Comprehension? List comprehension is a way of making list but in a single, short line. Yet, many developers struggle to fully […]
In this blog, we will learn how to generate QR Code using Python with help of qrcode module. What is a QR Code? Often when transacting with digital wallets, we scan the QR Code. Not just any code, QR Code is able to speed up and simplify the transaction process. The existence of a QR […]
An API is an Application Programming Interface which is used for the interaction between two different systems .it’s functionality depends on the implementation of the user. To use API, no prior knowledge about how it is used in other applications is necessary.it doesn’t expose the implementation to those who shouldn’t have access to it. These […]