Select Page

Blog

YouTube Video Tutorials on villagecoder.com
The main method in Java

The main method in Java

The main() method is the most important method in Java because that's the entry point of the java program. method can be thought of as a group of one or more programming statements that collectively has a name and function The main() method is the...

read more
What’s HTML Doctype?

What’s HTML Doctype?

The HTML document type declaration (DOCTYPE), is the first line of code required in every HTML or XHTML document. Share this article The HTML document type declaration (DOCTYPE), is the first line of code required in every HTML or XHTML document....

read more
Creating a simple webpage

Creating a simple webpage

A webpage is created using HTML, and CSS is used to style the webpage.Share this article A webpage is created using HTML, and CSS is used to style the webpage.To create an HTML file, you use a file editor. Examples of file editors are Notepad (in...

read more
Inheritance in Java – What is it?

Inheritance in Java – What is it?

Inheritance in Java is a process where by one class acquires the fields and methods of another class.Share this article Inheritance in Java is a process where by one class acquires the fields and methods of another class. Inheritance is one of the...

read more
The print() method in Java

The print() method in Java

The print() method is used to display text output on the console. The print() method is part of the Java API. The term, API, stands for Application Programmer Interface.The print() method is used to display text output on the console. The print() method is part of the...

read more