Posts

Showing posts from September, 2024

Java FileStream

Image
⋮ Mindvault360 Introduction to Java FEATURES OF JAVA OOPS Concepts Java Tokens Java statements Java Datatypes Type Casting Operators Expression, Scanner Class and Control Structures Control Statements in Java Loops in Java Functions in Java Arrays in Java Java String Java Regex Java Methods Java Constructor Java Modifiers Java Inheritance Java Abstraction Java Encapsulation Java Polymorphism Java Interface Java Recursion Java Final Class Java Keywords Java Inner Class Java Singleton Class Java Object Class Java Garbage Collection and Finalize Class Java Enumeration Multithreading Life cycle of a thread Thread Priority Thread Scheduler Thread.sleep() in Java Java join() method Daemon Thread in Java Java Thread Pool ThreadGroup in Java Java Shutdown Hook Java Runtime class Synchronization in Java Deadlock in Java Inter-thread Communication in Java Exception in Java Date and time class in Java Java FileStream Seria...

Introduction to HTML

Image
Web pages and web apps are often created and structured using HTML (HyperText Markup Language). It makes use of tags or components to specify the structure and content of a webpage. The foundation of all online development, HTML allows web browsers to display text, pictures, multimedia, and other content. Key Concepts of HTML: Markup Language : Not a programming language, but a markup language is HTML. It is made up of tags that "mark up" content on a webpage according to specific guidelines. HyperText : This is the capacity to use hyperlinks to link to other web sites. You can make clickable links in HTML that take readers to other pages or specific areas of the same page. Structure of an HTML Document: A simple HTML document contains distinct tags that instruct the browser on how to understand the information and a well defined structure. The principal elements consist of: DOCTYPE Declaration The browser is informed that the page adheres to the HTML5 specification (the mo...

Python Datatypes

⋮ Mindvault360 Introduction to Python Comments Variable in Python Python Datatypes Python Operators Conditional Statements  The various values that a variable might store are represented by data types in Python. Since Python is a dynamically-typed language, variables don't require their data type to be declared explicitly. Python uses the value that is assigned to the data to identify its type. Numeric Data Types: Numerous numeric kinds, such as complex numbers, floating-point numbers, and integers, are supported by Python. int (Integer): represents complete numbers without a fractional part, both positive and negative. Examples: x = 10       # Positive integer y = - 5       # Negative integer z = 0         # Zero float (Floating-Point Number): Represents real numbers with a fractional part (decimal point). Examples: x = 10.5     # Positive f...

Date and time class in Java

⋮ Mindvault360 Introduction to Java FEATURES OF JAVA OOPS Concepts Java Tokens Java statements Java Datatypes Type Casting Operators Expression, Scanner Class and Control Structures Control Statements in Java Loops in Java Functions in Java Arrays in Java Java String Java Regex Java Methods Java Constructor Java Modifiers Java Inheritance Java Abstraction Java Encapsulation Java Polymorphism Java Interface Java Recursion Java Final Class Java Keywords Java Inner Class Java Singleton Class Java Object Class Java Garbage Collection and Finalize Class Java Enumeration Multithreading Life cycle of a thread Thread Priority Thread Scheduler Thread.sleep() in Java Java join() method Daemon Thread in Java Java Thread Pool ThreadGroup in Java Java Shutdown Hook Java Runtime class Synchronization in Java Deadlock in Java Inter-thread Communication in Java Exception in Java Date and time class in Java Java FileStream Seria...