Skip to main content

Posts

Showing posts from May, 2023

cobol code

COBOL (Common Business-Oriented Language) is a programming language that is primarily used in business and administrative systems. It's known for its readability and usage in handling large volumes of data. Although it might be difficult to cover all aspects of COBOL in a single response, I can provide you with a brief introduction and an example code snippet to help you get started. COBOL programs are composed of a series of paragraphs that contain statements. Each statement starts with a verb and ends with a period. Here's a simple example of a COBOL program that calculates the sum of two numbers: https://www.theengineer.info/2023/05/development-programming-languages.html cobol Copy code IDENTIFICATION DIVISION. PROGRAM-ID. ADDITION. DATA DIVISION. WORKING-STORAGE SECTION. 01 NUM1 PIC 9(5). 01 NUM2 PIC 9(5). 01 SUM PIC 9(6). PROCEDURE DIVISION. DISPLAY "Enter the first number: ". ACCEPT NUM1. DISPLAY "Enter the second number: ". ACCEPT NUM2.

Development Programming Languages Python Python : Basics you should learn for beginners

    Why is Python number one programming language in the world? It's easy to understand and complete simple or complex tasks plus it has many library or APIs to allow you to perform other actions more easy through using it . Showing how simple it it to put the most common message on the screen being print("Hello world") https://www.theengineer.info/2023/04/my-honest-review-of-surfshark-vpn-or.html   Wages you can get paid range from around $60,000 to max of like $150,000  per  year if you can learn this well some of the biggest companies which use this language include. Udemy Facebook Google Pinterest Instagram Twitter Netflix Spotify Reddit Redhat Lyft Youtube How to install Python on Windows and Apple. https://youtu.be/MQ8JYT9nc8w