Posts

Acquire a Knowledge of Java Programming Language

Image
Hello Guys๐Ÿค™  In Our Previous Block,   We   Have  Seen  the   Basics   of   Java   Programming  and   Some  Simple   Programs. In today's Blog We will Create a Basic Project  in Java Programming Language.   With the Help of Java Program Using the Length and Breadth of the House. We Can Easily Find Out the Area of ​​The House and How Many Tiles Are to Be Installed in That House and the Cost of Installation and Cost of Wiring in the House.  Basic Project in Java Programming Language.   Program  - Basic Project  import java.io.*; import java.util.Scanner; class Project { public static void main(String args[ ])  { Scanner obj = new Scanner(System.in); int l,b,a,tl,tb,ta,x,p; p=1; int la,o,wire,pr,g,lb,h,me; char ch; System.out.print("Enter Your House Length= "); l = obj.nextInt( ); System.out.print("Enter Your House Bregth= "); b = obj.nextInt( ); ...

Write a Program to Print Even and Odd Numbers in Java Using Loop

Image
Hello Guys๐Ÿค™ In Our Previous Block, We  Have Seen  the  Basics   of  Java Programming and Some Simple Programs. In today's Blog We will see a Program to Print  Even & Odd Number in Java Programming Language.   Program to Print Even Numbers from 1 to a Given Number  in Java Programming Language.  Program  - Even Number import java.io.*; import java.util.Scanner; class Even{ public static void main(String args[ ]) { Scanner obj = new Scanner(System.in) ;    int no , i ;    System.out.print("Enter A Number: ") ;    no = obj.nextInt() ;    System.out.println("Even Numbers 1 to " + no + ":") ;    System.out.println("---------------") ;         for (i = 2; i <= no; i += 2)          {           System.out.println("Even = " +i ) ;         }     } } Output  -  Enter Any Number ...

How to Print a Table of Any Number in Java Programming Language

Image
Hello Guys๐Ÿค™ In Our Previous Block, We  Have Seen the Basics of Java Programming and Some Simple Programs. In today's Blog We will see a Program to Print a Table of Any Number in Java Programming Language.   Program of for Loop to Print a Table of Any Number in Java Programming Language.  Program  - Table Print import java.io.*; import java.util.Scanner; class TablePrint {  public static void main(String[] args)  {  Scanner obj= new Scanner(System.in);  int no , i , table; System.out.println("Enter Any Number : "); no=obj.nextInt(); System.out.println("Multiplication Table of " + no); System.out.println("-----------------------------");      for (i=1; i<=10; i++)      {        table=no*i;        S ystem.out.println(no+" * "+i+" = "+table);        }     } } Output  - Run two Time - Enter Any Number = 5 Multiplication Table of 5 --------------...

How to Find Factorial Any Number in Java Programming Language

Image
Hello Guys๐Ÿค™ In Our Previous Block, We  Have Seen the Basics of Java Programming and Some Simple Programs. In today's Blog We will see How to make Factorial Number Program in Java Programming Language.   Program to Find Any Number Factorial in Java Programming Language.  Program  -  Find Factorial import java. io.*; import java.util.Scanner; class Factorial  { public static void main(String args[ ])  { Scanner obj = new Scanner(System.in);       int no, i;       long factorial = 1;       System. out. println("Enter Any Number = ");       no = obj.nextInt();         for(i = 1; i<=no; i++)         {            factorial *= i;            System.out.println(factorial);         }         System.out.println("Factorial of  "+no+" = "+ factorial);   ...

Write a Program to Check Palindrome Number in Java Language

Image
Hello Guys  ❤‍๐Ÿ”ฅ In Our Previous Block, We Have Seen the Basics of Java Programming and Some Simple Programs. In today's Blog We will see How to make Palindrome Number Program in Java Programming Language.  Program to Check Palindrome Number or Not a Palindrome Number in Java Programming Language. Program - Palindrome Checker import java. io.*; import java.util.Scanner;  class Palindrome { public static void main(String args[ ])  { Scanner sc = new Scanner(System.in);         int no, rev;         int remainder, temp;         System.out.print("Enter Any Number = ");         no = sc.nextInt();         rev=0;         temp = no;         while (no != 0) {             remainder = no % 10;             rev = rev * 10 + remainder;             no /=...

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

Difference between HTML and CSS

Image
  เคจเคฎเคธ्เค•ाเคฐ เคฆोเคธ्เคคों ๐Ÿ˜ƒ เคœैเคธा เค•ि เคนเคฎเคจे เคนเคฎाเคฐे เคชिเค›เคฒे เค†เคฐ्เคŸिเค•เคฒ เค…เคฅเคตा เคฌ्เคฒॉเค— เคฎैं  CSS เค•े เคฌाเคฐे เคฎें เค”เคฐ เค‰เคธเค•े เคชเคฐिเคšเคฏ เค•ो เคธเคฎเคा เคฅा เค•ी CSS เค•्เคฏा เคนो เคคी   เคนै ...?  เค†เคœ เค•े เค‡เคธ เค†เคฐ्เคŸिเค•เคฒ เคฏा เคฌ्เคฒॉเค— เคฎे เคนเคฎ HTML เค”เคฐ CSS เค•े เคฌीเคš เคฎें เคฎुเค–्เคฏ เค…ंเคคเคฐ เค•्เคฏा เคนोเคคा เคนै -เคฏे เคœाเคจेंเค—े। เคคो เคšเคฒिเค เคถुเคฐू เค•เคฐเคคे เคนै - ๐ŸคŸ Difference  between HTML and CSS --/ HTML  เค•ा เคชुเคฐा เคจाเคฎ  “ HyperText Markup Language ” เคนोเคคा เคนै เค”เคฐ  CSS  เค•ा เคชुเคฐा เคจाเคฎ “ Cascading Style Sheets ” เคนै!    HTML  เค•े เคฆ्เคตाเคฐा website เคฎें text add เค•เคฐ เคธเค•เคคे เคนै, image add เค•เคฐ เคธเค•เคคे เคนै, เคฏा เคฆेเค– เคธเค•เคคे เคนैं เค”เคฐ  CSS  เค•े เคฆ्เคตाเคฐा color , font, style เค†เคฆि เค•ो select เคต webpage เคฎें Add  เค•िเคฏा เคœाเคคा เคนै!  HTML เคœो เคนै เคตो เค•िเคธी web Page เค•ो Create เค•เคฐเคจे เค•े เคฒिเค เค•ाเคฎ เค†เคคी เคนै,  เคœเคฌเค•ि CSS เคœो เคนै เคตो เค•िเคธी web Page เค•ो design เค•เคฐเคจे เค•े เค•ाเคฎ เคฎें เค†เคคी เคนै!  HTML  เคธे Content - เคฏाเคจी เค•ी เคนเคฎ HTML เคธे เค…เคชเคจे web Page เคฎें เค•ेเคตเคฒ  content เคกाเคฒเคคे เคนै , content เค•ा เคฎเคคเคฒเคฌ เคนै เคœैเคธे - text, heading, paragraph, image, video, audio, bullet เค†...

Introduction of CSS , code with dheer

Image
Code With Dheer เคจเคฎเคธ्เค•ाเคฐ เคฆोเคธ्เคคों ๐Ÿ™ เค†เคœ เค•े เคนเคฎाเคฐे เคชเคนเคฒे เคฌ्เคฒॉเค— เคฎैं เคนเคฎ CSS เคฏा  Cascading Style Sheets  เค•े เคชเคฐिเคšเคฏ เค•ो เคธเคฎเคेंเค—े । เคคो เคšเคฒिเค เค†เคœ เค•े เคฌ्เคฒॉเค— เค•ी เคถुเคฐुเค†เคค เค•เคฐเคคे เคนैं। Introduction Of CSS - CSS เค•ा เคชुเคฐा เคจाเคฎ Cascading Style Sheets เคนोเคคा เคนैं - CSS เคตเคฌे เคกॉเค•्เคฏुเคฎेंเคŸเคธ (web Page) เคธ्เคŸाเค‡เคฒ เค•เคฐเคจे เค•ी เคญाเคทा เคนै เคœिเคธे " W3C – World Wide Web Consortium เคฆ्เคตाเคฐा เคตिเค•เคธिเคค เค•िเคฏा เค—เคฏा เคนैं " เค‡เคธเค•ा เคชเคนเคฒा เคธंเคธ्เค•เคฐเคฃ (version) 1996 เคฎें เคช्เคฐเค•ाเคถिเคค (released) เค•िเคฏा เค—เคฏा เคฅा। CSS 3 เค‡เคธเค•ा latest version เคนै เค‡เคธเค•ा เค‰เคชเคฏोเค— เคเค• เคตेเคฌ เคชेเคœ เค•ो เคธเคœाเคจे (design) เคฎें เคนोเคคा เคนै เค”เคฐ HTML เค•े เคธाเคฅ-เคธाเคฅ เคนी เค‡เคธ्เคคेเคฎाเคฒ เคนोเคคी เคนैं। เคœिเคธ เคช्เคฐเค•ाเคฐ เคธे HTML language , web Page เค•ी เคธंเคฐเคšเคจा เค•ो เคฌเคจाเคจे เค•े เค•ाเคฎ เค†เคคी เคนैं เคตเคนी CSS เคตेเคฌ เคชेเคœ เค”เคฐ เคตेเคฌเคธाเค‡เคŸ เค•े layout เค•ो เคฌเคจाเคจे เคฎें เค‰เคชเคฏोเค— เคฎें เค†เคคी เคนैं  web Page เค•ी เคธเคฐเคšเคจा เค•े เค…ंเคคเคฐ्เค—เคค  web Page เคฎें เคคเคธ्เคตीเคฐ (image) เค”เคฐ video เค•ो เคกाเคฒเคจा, Heading เคฆेเคจा, เคชैเคฐेเค—्เคฐाเคซ เค†เคฆि เค†เคคे เคนैं เค”เคฐ web Page เค•े layout เค•े เค…ंเคคเคฐ्เค—เคค Color, font เค†เคฆि เค†เคคे เคนै। CSS เคเค• simple Design Language เคนै เคœो website เค”เคฐ web devlopment เค•े เค•ाเคฐ्เคฏ เค•ो เค†เคธाเคจ เค•เคฐเคคी เคนै CSS Language เค•े เค‰เคชเคฏोเค— เคธे เคนเคฎ web Page ...