All Basic Articles
Course Navigation  We have created all of the directories needed for our project. Let’s just start writing our HTML code. Since we are designing a… Read More
Method Resolution Order : Method Resolution Order(MRO) it denotes the way a programming language resolves a method or attribute. Python supports classes inheriting from other classes.… Read More
Course Navigation  So far, we already have learned about the structure of an HTML document, tags etc. Let us use this knowledge to create our… Read More
Course Navigation  We already have learned a lot of things about HTML. We know:  The structure of an HTML Page. What are Tags and Elements?… Read More
Definition of descriptor : Python descriptors are created to manage the attributes of different classes which use the object as reference. In descriptors we used… Read More
Prerequisite – Design a Finite automata Suppose we have a DFA that is defined by ( Q, , , q0, F ) and it accepts the language L1.… Read More
Adding a new column in an already created dataframe is quite easy. Adding a new column is actually required to process the data of dataframe… Read More
Introduction to Singly linked list : A singly linked list is a set of nodes where each node has two fields ‘data’ and ‘link’. The… Read More
The namedItem() Method is used to return the element with having the specified ID, OR, name or content in an HTML element collection in the… Read More
The @import rule is used to import one style sheet into another style sheet. This rule also support media queries so that the user can… Read More
The border-left property in CSS is used to set all bottom left properties in one line. It is used to set the width, style, and… Read More
The value attribute in HTML is used to specify the value of the element with which it is used. It has different meaning for different… Read More
The CSS border-bottom-color property is used to set the color of the bottom border of an element. It is mandatory to declare the border-style or… Read More
The value attribute for <button> element in HTML is used to specify the initial value of the button element.  Syntax: <button value = "value"> Example: … Read More
Data preprocessing is an important task in text classification. With the emergence of Python in the field of data science, it is essential to have… Read More
Sometimes, in making programs for gaming or gambling, we come across the task of creating a list all with random numbers in Python. This task… Read More
Java: A general-purpose, high-level programming language. It is developed by Sun Microsystems. It was developed by a mini team of engineers which is known as… Read More
Each group in a Linux system is uniquely identified by a group identification number or GID. All the information listing groups in a system are… Read More
What is the correct representation to change the color of h2 element? (A) h2 { background-color: #008000 } (B) {h2 background-color: #008000} (C) h2.all{ background-color:… Read More
Select the correct among the following for linking an external style sheet. (A) <link rel=“stylesheet” type=“text/css” href=/html-course-practice-quiz-2/>(B) <style rel=“stylesheet” type=“text/css” href=/html-course-practice-quiz-2/>(C) <link>stylesheet (D) <link href=/html-course-practice-quiz-2/>… Read More