Javascript Course for Beginners

Why Javascript?
Javascript Course for Beginners
 
    As we all know that we can build beautiful websites using HTML and CSS. But the problem is such pages are static only which means users can just scroll up and down, click on the links. There's no interaction with the users.

Javascript Course for Beginners

    Now we can make these static pages dynamic by adding a layer of interactivity with the help of Javascript.

Introduction to HTML5

 HTML:

Introduction to HTML5

  • HTML stands for HyperText Markup Language.
  • HTML is used for presenting and structuring content on web pages and its standards are maintained by W3C(World wide web Consortium).
  • In general, we use HTML to build a webpage, Hyperlink, Online form, etc.,
  • HTML is case insensitive and platform-independent, the same code will run on a different OS.

Python Quiz

 This Quiz covers the basic concepts of Python

  • Basics of Python 
  • Control Structures
  • Functions
  • Collections
  • Libraries
  • Built-in functions
  • Modules and packages 
  • File and exception handling
  • Control Language (CL) Commands - Quiz

    This Quiz covers the major CL commands used in IBM iSeries/AS400.

    • CL Commands
    • Physical file
    • Logical file
    Total Questions: 10

    Digital Logic Circuit - Quiz #01

    This Quiz covers the below concepts from Digital Logic Circuit

    • Review of Number Systems
    • Binary, Decimal, Octal, HexaDecimal
    • 1's Complement
    • 2's Complement
    • Conversion of Binary code into Gray Code or Viceversa
    • Error detection and Correction codes
    Total Questions: 10

    How to Merge/Combine Partition drive in Windows 10

    • If your drive is getting filled up with files and running into an issue "Not enough free space" and at the same time, there is another drive with plenty of space left. To increase the space, we can merge the drives to solve the issue.
    • For example, if C: drive is getting full but partition D: drive has enough space left. Then you increase the C: drive space by merging C: and D: drive into one.
    • We can do this using the Disk Management tool by deleting the target drive (D:) to unallocate the space. Then Extend the Volume of the source drive (C:) with Extend options.
    • But, Note using the Disk Management tool to merge partitions require us to delete the partition first to create unallocated space. Therefore, you should take back up your data either by manual copy files or using a backup software tool.

    Loop control statements - Break, Continue, Pass in Python

    Break, Continue, Pass in Python:
    • As we know, in Python we have two types of the loop 'for' and 'while' which allows us to iterate over a list, tuple, string, dictionary, and set. 
    • But there are some cases where we want our loop to exit completely or skip a part of the loop or ignores some particular condition. 

    You might also like

    Deploy your Django web app to Azure Web App using App Service - F1 free plan

    In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...