Skip to main content

Posts

Recent Posts

Latest News

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

Basics of Web

 How Website Works?:  When a client search a particular website on internet, his request is sends to DNS for obtaining IP Address. This IP Address is send to the client-server. Clients server requests the web-server for sending files to the client in terms of HTML, CSS and Javascript to the location of clients IP Address. Finally client views content in his browser which he had requested.  Let us now define some common terms in Web Development which are required to understand before moving forward in web development. Web page is a document or information resource on www (world wide web) and can be accessed through web browser and displayed on a monitor. Web publishing describes the software and methodologies to design web pages and website. Web Server is a Computer which stores websites or A Web server is an application or a computer that sends webpages over the internet using the HTTP protocol. The functionality of website is managed by web server. Web Browser is a sof...
Recent posts

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 SEO

  Introduction to SEO What is a SEO and why it is used? SEO stands for search engine optimization and it is used for purpose of ranking a website in search engine results.  Search Engine is a software program to search anything on internet. Eg. Google, Bing, Yahoo, etc. SEO also make website more understandable for search index bots for indexing purposes.  If a website is higher in rank in search result then more users will visit this website, and if it has low rank in search results then less users will visit this website. This is because search engine rank  website  according to  time spent and no. Of users visited website. Depending on this websites are ranked in search engines.

Introduction to C

 What is C in programming and why it is used? C is a general purpose programming language developed by Dennis Ritchie at AT & T's Bells laboratory in 1972.  C language is from one of the popular languages. It is simple and easy to use and it is portable. It is considered  to be a middle level language and it is close to machine level language due to which it executes instructions faster .  With the help of C language we can solve complicated mathematical equation. C language can be good base to learn other programming languages like C++, C#, Java.  Importance of c programming language  and where it is used?           Major parts of popular operating systems like windows, Linux, Unix and  Android are written in C. It is used for writing Device Driver programs ( program which operates or control device ).           In a professional games , when user gives instructions like firing, aimin...

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 : ...