Posts

Java Tutorial - Learn Java Programming Language

Image
  Hello Guys 🤙 In our Previous Blog We covered the Basic Syntax of Java Programming Language. In today's Blog We will see How to Make Simple Java Program in Programming Language A Java Program to Swap The Values ​​of Two Variables Using a Third variable  Program - import java. io. *; import java.util.Scanner; class TwoValueSwap {   public static void main(String args[ ])  { Scanner input = new Scanner(System.in);        int a, b, temp;        System.out.print("Enter Value of a = ");        a = input.nextInt();        System.out.print("Enter Value of b = ");        b = input.nextInt();                  // swap the values using a temp variable         temp = a;         a = b;         b = temp;                  // print th...

Syntax of Java Programming Language.

Image
  Hello Guys 🤙 In our previous blog we covered the basics of Java programming language. Today we will seen the syntax of Java programming language. Java Programming Language Basic Syntax "Syntax" import java. io. *; class HelloWorld {  public static void main(String args[ ] ) { System.out.println("Hello,World!");   } } "Output" Hello,World public : A Java keyword that indicates the visibility of the class or Method. Public Means the class or Method Can be Accessed from anywhere. class : A Java Keyword Used to Define a class. HelloWorld : The Name of the class, which must be the Same as the Name of the File (with a .java extension) that the class is Defined in. {} : Braces are Used to Define a Block of code. In this case, the Block of code is the entire class. static : A Java keyword that Indicates that a Method or Variable Belongs to the class itself, rather than to Any Specific Instance of the class. void : A Java Keyword used to Indicate that a Method D...

Introduction Of Java Programming language

Image
Hello friend 🤞

Feautures Of CSS

Image
  Hello friends 😄 As we understood in our previous article or blog about  difference type of CSS  ? In today's article or blog, we will know how many features of CSS.  So let's get started - 🤟 Features of CSS -  CSS (Cascading Style Sheets) is a language used for describing the presentation of a document written in HTML or XML. It has several features that make it a powerful tool for designing and styling web pages. Here are some of the key features of CSS:- Selectors Cascading Box model Layout Responive design Animation and transition Modularity Selectors:- CSS selectors allow you to target specific elements in your HTML document and apply styles to them. There are several types of selectors, including element selectors, class selectors, ID selectors, and attribute selectors. Cascading:- The "C" in CSS stands for cascading , which means that styles can be inherited and overridden in a hierarchical manner. This allows you to create a consistent look and f...

Different Types Of CSS

Image
 Hello friends  ðŸ˜ƒ As we understood in our previous article or blog about what is the main difference between HTML and CSS? In today's article or blog, we will know how many types of CSS are there.  So let's get started - 🤟  Different Types Of CSS-  HTML page can be design by CSS in three ways, hence there are three types of CSS, ie it can be used in HTML Elements in three ways, as follows: -   Inline CSS  Internal CSS  External CSS  1. Inline CSS -  Inline CSS is a method of styling HTML elements with style rules written directly into the HTML element's tag. It is defined in the style attribute of the HTML tag. Inline CSS has the highest specificity (priority) than the other CSS styles . Example:  This is a heading