Posts

Showing posts from August, 2022

Basic Web Design Part 1

HTML HTML stands for Hyper Text Markup Language. With HTML you can create your own Website. HTML is very easy to learn. HTML describes the structure of a Web page. A markup language is a set of markup tags and the tags describe document content. HTML consists of a series of elements. HTML elements tell the browser how to display the content. 10 Basic HTML Elements 1. <html> - Defines an HTML document 2. <head> - Contains metadata/information for the document 3. <title> - Defines a title for the document 4. <body> - Defines the document's body 5. <h1>....<h6> - Defines HTML headings 6. <p> - Defines a paragraph 7. <a> - Defines a hyperlink 8. <img> - Defines an image 9. <table> - Defines a table 10. <frame> - Defines a window (a frame) in a frameset

C Programming Language Part 1

Image
What is C? C is a general purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX as it was developed to write the UNIX Operating System. Why Learn C? It is one of the most popular programming language in the world. If you know c, you will have no problem learning other popular programming language such as Java, Python, C++, C#, etc, as the syntax is similar. C is very fast, compared to other programming language like Java and Python. C programming language provides the following types of loops to handle looping requirements. While Loop Repeats a statement or group of statements WHILE a given condition is true. It tests the condition before executing the loop body. For Loop Executes a sequence of statements multiple times and abbreviates the code the manages the loop variable. Do.. While Loop It is more like a WHILE statement, except that it tests the condition at the e...

Visual Basic 6.0 Part 1

Image
Visual Basic Visual Basic (VB) is an event-driven programming language and environment from Microsoft that provides a graphical user interface (GUI) which allows programmers to modify code by simply dragging and dropping objects and defining their behaviour and appearance. The Integrated Development Environment One of the most significant changes in Visual Basic 6.0 is the Integrated Development Environment (IDE). IDE is a term commonly used in the programming world to describe the interface and environment that we use to create our applications. It is called integrated because we can access virtually all of the development tools that we need from one screen called an interface. The IDE is also commonly referred to as the design environment, or the program. The Visual Basic IDE is made up of a number of components Menu Bar Tool Bar Project Explorer Properties window Form Layout Window Toolbox Fig 1: The Visual Basic Start-Up Dialog Box Menu Bar This Menu Bar displays the commands that ...