Skip to content
Code_Underscored_logo
  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Code_Underscored_logo
  • making a matrix in python
    Python

    How to make a Matrix in Python

    ByHumphrey March 26, 2021March 2, 2024

    A Python matrix is a special case of a two-dimensional rectangular array of data stored in rows and columns. The data in a matrix can be numbers, strings, expressions, symbols, and each data element is of the strictly same size. Matrices are important data structures used in mathematical and scientific calculations.

    Read More How to make a Matrix in PythonContinue

  • updating Python
    Python

    How to update Python

    ByHumphrey March 26, 2021March 2, 2024

    Let’s discuss various ways to update the Python on your PC. The first step is to open the cmd and check the python version on the terminal by typing the following command.

    Read More How to update PythonContinue

  • roman numerals to decimals
    C++

    How to convert roman numerals to decimals in C++

    ByBrandon Jones March 23, 2021March 2, 2024

    To have an in-depth understanding of converting roman numerals into decimals, we must first have an idea about the roman numeral system. It is a number system where letters are used to denote numbers. Modern roman numerals consist of 7 symbols, and each of them has a fixed decimal value.

    Read More How to convert roman numerals to decimals in C++Continue

  • 403 forbidden error
    HTML | Web Development

    What is a 403 Forbidden Error, and how to fix it

    ByMoses N March 15, 2021March 2, 2024

    The 403 forbidden error is an HTTP status code that can be configured in the server such that when one tries to access what is not allowed, the server throws the 403 forbidden error. At times, as an end-user, there is nothing much you can do since it’s a server error, but it can sometimes be a problem on your end. Let’s try to understand this analogy.

    Read More What is a 403 Forbidden Error, and how to fix itContinue

  • Generate Random Numbers Python
    Python

    How to generate random numbers in Python

    ByHumphrey March 14, 2021March 2, 2024

    Generating random numbers is a task you meet almost daily while working as a developer in Python or any other programming language, especially object-oriented languages. Even as a beginner trying to practice and master the language, you will at one point need to generate simple random in your respective language. However, these might not be as complex as those that expert developers interact with daily.

    Read More How to generate random numbers in PythonContinue

  • Round in Python examples
    Python

    How to Round in Python (with examples)

    ByHumphrey March 11, 2021March 2, 2024

    Round() is a built-in function available with Python. It will return you a float number that will be rounded to the decimal places given as input. If the decimal places to be rounded are not specified, it is considered 0, and it will round to the nearest integer.

    Read More How to Round in Python (with examples)Continue

  • HTML Q tag examples
    HTML | Web Development

    HTML Q tag explained with examples

    ByMoses N February 28, 2021March 2, 2024

    In the previous tutorials, we discussed what HTML is and its history, we went ahead and learned about HTML elements, and finally discussed HTML attributes. Today we are going to discuss the HTML Q tag. Before we start, do you know if the HTML Q tag is an element or an attribute? Let’s do a recap. We said HTML elements are the building block of HTML. They are responsible for creating web pages, thus defining the content on the web page, while HTML attributes provide more information about an element.

    Read More HTML Q tag explained with examplesContinue

  • install java SE development kit windows
    Java

    How to install Java SE Development Kit on Windows

    ByBrandon Jones February 28, 2021March 2, 2024

    Java development SE kit is important to develop applications, applets, and components using Java programming language. The JDK includes also includes the tools useful for testing programs written in Java and running on the Java platform. In this tutorial, we shall loom into the step-by-step process of installing JDK on the Windows system, and also look at the method of setting an environment variable that lets you run Java using the command-line.

    Read More How to install Java SE Development Kit on WindowsContinue

  • python interpreter
    Python

    What is a Python Interpreter

    ByHumphrey February 27, 2021March 2, 2024

    As a python developer or someone who interacts with Python for whatever reason, it is important to understand what a python interpreter is. To enable us to drive the point home safely, we will first examine how your own PC runs its programs. Then we can delve into how Python runs your code and explore how the concept of Python Interpreter comes up.

    Read More What is a Python InterpreterContinue

  • C++ Stack
    C++

    Stack in C++

    ByBrandon Jones February 27, 2021March 2, 2024

    The true essence of learning a language is getting familiar with data structures in that language. Data Structure is a fundamental concept as programming is all about storing data, retrieving data, and dealing with data types. The most common data structure we come across is an array. An array is a basic abstract data type that linearly holds data.

    Read More Stack in C++Continue

  • ajax request django
    Django

    How to work with AJAX Request in Django

    ByHumphrey February 25, 2021March 2, 2024

    AJAX is an acronym for Asynchronous JavaScript And XML. AJAX technologies allow web pages to update asynchronously by exchanging data to and from the webserver. In essence, the web page can be updated without reloading the entire web page. It utilizes XMLHttpRequest objects to transmit and receive data.

    Read More How to work with AJAX Request in DjangoContinue

  • do-while python examples
    Python

    Do While in Python with examples

    ByHumphrey February 24, 2021March 2, 2024

    A Do-While loop checks a condition after initially executing the statement. At any given point, a do-while loop is executed at least once. This is what is referred to as a post-test loop. Since Python does not explicitly handle do-while, we will demonstrate with examples of how to emulate the process.

    Read More Do While in Python with examplesContinue

Page navigation

Previous PagePrevious 1 … 24 25 26 27 28 … 32 Next PageNext
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy

© 2025 Code Underscored. All Rights Reserved.

A PART OF VIBRANT LEAF MEDIA COMPANY.

  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Search