Program to Take Input and Display Programming

Java- Program to Take Input and Display

  • December 22, 2020
  • 0 Comments

Write a Java program to take input from user as “Name” and Display as “Hello Name” Input Your This program is done by using Scanner class to use Scanner class you have to import page called Scanner import java.util.Scanner; Java Scanner class is used to enable keyboard for input operations Scanner obj_name = new Scanner(System.in); […]

Abstraction in Java Programming

Java – Abstraction in Java Programming

  • December 22, 2020
  • 0 Comments

Abstraction is the mechanism by which you hide data that is not required by a user. The advantage of abstraction is that the user can work only with the needed data and is not required to view the unwanted data. i.e the owner of the car must know how to drive. In OOPs, you must […]

Task of Java Virtual Machine Programming

Java – Task of Java Virtual Machine

  • December 20, 2020
  • 0 Comments

In Java, a compiler translates the Java source code into an intermediate code known as bytecode for virtual machine known as JVM (Java Virtual Machine). Bytecode is the machine language for JVM and is not machine-specific; instead, the machine-specific code is generated by the Java interpreter, which serves as a mediator between the virtual machine […]

basic terms of java programming Programming

Java – Basic Terms of Java Programming

  • December 20, 2020
  • 0 Comments

A Java program, similar to programs in other programming languages, It also uses the literals, variables, tokens, data types, etc. Some of the features are derived from previous high-level programming languages like C, C++, like every programming language, and can have its own predefined keywords. They can use the identifier to give a unique name […]

introduction to java programming Programming

Java – Introduction, Features, Versions & History

  • December 20, 2020
  • 0 Comments

Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented. Java inherits its object-oriented features from C++. Java language was created by James Gosling, a software developer at Sun Microsystems, in 1991.  It was first named as “OAK” but it was later named as “JAVA”. It was officially launched in 1995, Java derives […]

TT and KBD Web Development

HTML – TT (Teletype) and KBD (Keyboard) Tag

  • November 27, 2020
  • 0 Comments

HTML <TT> (Teletype) Element  The content of a <tt> element is written in monospaced font (like that of a teletype machine).   <tt> provides no semantic information about the text it encloses. It is purely used for text formatting purposes. <tt> is short for teletype, and instructs the browser to render the text similar to […]

ACRONYM & DFN Tag Web Development

HTML – ACRONYM & DFN Tag

  • November 27, 2020
  • 0 Comments

HTML <acronym> Element.  The <acronym> element allo<acronym> and closing </acronym> tags is an acronym. The title attribute on the opening <acronym> tag whose value is the full version of the acronym. For example, if you want to indicate that HTML as an acronym.ws you to indicate that the text between opening HTML Code <acronym title=’Hypertext […]

HTML - Cite, Q(Quotation), Var and Samp Tags Web Development

HTML – Cite, Q(Quotation), Var and Samp Tags

  • November 27, 2020
  • 0 Comments

HTML <cite> Element If you are quoting a text, you can indicate the source by placing it between an opening <cite> tag and a closing </cite> tag. The content of the <cite> element is rendered in italicized text by default.  HTML Code This HTML tutorial course will help you in <cite> Web Development Field </cite> […]

htmllist tags Web Development

HTML List Tags – UL, OL and DL

  • November 27, 2020
  • 0 Comments

There are many reasons you might want to add a lists to your pages, from putting your five favorite albums on your homepage to including a numbered set of instruction for visitors to follow. In HTML you can create three types of lists. Unordered Lists.  Ordered List.  Definition LIst. By using lists you can arrange […]

anchor tag Web Development

HTML – An Anchor Tag or Link Tag

  • October 22, 2020
  • 0 Comments

HTML allows linking to other Html documents as well as images. Clicking on a selection of text or an image on one web page will open an entire web page or an image. Text or image that provides such linkages is called hypertext, hyperlink, or a hotspot. Browser distinguishes hyperlinks from normal text. Hyperlinks appear […]