Skip to main content

Posts

Showing posts with the label Programming

Recent Posts

Latest News

● Posts on CSS and SEO coming soon ...●

Introduction to Java

  What is Java? Java is a programming language used to create different types of software like: Mobile applications (Android apps) Web applications Desktop software Games Banking and enterprise applications Java was created by James Gosling in 1995. It is one of the most popular and trusted programming languages in the world 🌍. Why Java is Popular? Java is popular because: ✅ Easy to learn for beginners ✅ Works on many devices ✅ Secure and reliable ✅ Used in real-world applications like banking, shopping apps, and websites Java is Platform Independent Java follows the rule: “Write Once, Run Anywhere” This means: You write Java code once It can run on Windows, Linux, or Mac without changes This is possible because Java uses JVM (Java Virtual Machine). How Java Works? (Simple Explanation) You write Java code (.java file) Java compiler converts it into bytecode JVM runs this bytecode on any system So Java does not depend on the operating system 👍 Basic Structure of a Java Program Let...

Introduction to programming

What is a programming? :-  Programming is a way to communicate with computer by giving set of instructions to the computer. Giving set of instructions to the computer is known as program. Those who gives instructions to the computers are known as programmers. Computer cannot understand language as we use to communicate with each other. Computer can understand only binary language(0 and 1). Binary code is very difficult to understand since it is only in form of 0 and 1. Computer is not smart enough to do task on its own, we need to provide instructions to perform task. We use programming languages to give those instructions to the computer. Still we cannot give directly instructions to the computer because writing instructions in 0 and 1 is a difficult task. So here we need to convert our instructions to binary language by using translators which converts set of instructions in machine readable form.  Programming languages are of two types 1. Low Level  Languages : ...