Mastering Java Comments | Explained in Bangla | Java Tutorial by Obydul Islam. Comments are the soul of clean coding - they make your Java code readable and professional. In this Bangla tutorial, I’ve explained: • What Comments are • Types: Single-line, Multi-line & Documentation • How to Create JavaDoc • Best Practices 🎓 Perfect for Java learners and new developers. 📺 Watch full tutorial : https://lnkd.in/gxxPFz-R #Java #CoreJava #javacomments #javadoc #BanglaTutorial #JavaProgramming #javatutorial #LearnJava
Java Comments in Bangla: A Tutorial by Obydul Islam
More Relevant Posts
-
Bangla Java Tutorial 015 - Java Identifiers & Naming Conventions | Core Java Learn how to properly name Java classes, methods, and variables using standard naming rules — an essential skill for clean, professional coding. In this Bangla tutorial, I’ve explained: • What is an Identifier in Java? • Where to Use Identifiers • Rules for Writing Identifiers • Valid & Invalid Identifier Examples • Java is Case-Sensitive • Java Naming Conventions (camelCase, PascalCase, etc.) • Common Mistakes to Avoid • Best Practices for Readable Code 🔑 Keywords: Java, Core Java, Java Identifiers, Java Naming Conventions, Java for Beginners, Learn Java Bangla, Java Programming Language, Java Course. 🎓 Perfect for Java learners and new developers. 📺 Watch full tutorial : https://lnkd.in/g5u4iFZs #Java #CoreJava #JavaIdentifiers #JavaNamingConventions #BanglaTutorial #JavaProgramming #javatutorial #LearnJava
Bangla Java Tutorial 015 - Java Identifiers & Naming Conventions | Core Java
https://www.youtube.com/
To view or add a comment, sign in
-
Bangla Java Tutorial 014 - Java Keywords (Reserved Words) | Complete Explanation for Beginners | Core Java. Java Keywords are the building blocks of every Java program. In this tutorial, I explain: ✔ What are Keywords in Java? ✔ Why are they reserved? ✔ Different keyword groups and examples ✔ Full list of Java keywords 🎓 Perfect for Java learners and new developers. 📺 Watch full tutorial : https://lnkd.in/gsGWiKFH #Java #CoreJava #JavaKeywords #ReservedWords #BanglaTutorial #JavaProgramming #javatutorial #LearnJava
Bangla Java Tutorial 014 - Keywords in Java | Reserved Words | Core Java
https://www.youtube.com/
To view or add a comment, sign in
-
I’ve just uploaded a new video on JDK, JRE, and JVM — three core concepts every Java developer must understand! ☕💻 In this video, I’ve explained: 🔹 What is JDK (Java Development Kit)? 🔹 What is JRE (Java Runtime Environment)? 🔹 What is JVM (Java Virtual Machine)? 🔹 How they work together to run Java programs Whether you’re a beginner learning Core Java or preparing for interviews, this video will help you build a strong foundation in Java. 📺 Watch it here 🎯 Channel: Nepali Java Guru I teach Java programming in English, with simple explanations and real-world examples to make learning easier for everyone. Let’s grow together as Java developers! 🌱 #Java #JDK #JRE #JVM #CoreJava #Programming #NepaliJavaGuru #Learning https://lnkd.in/gjjcmBNJ
👉 “JDK, JRE, and JVM Explained | Core Java Basics for Beginners | Nepali Java Guru”
https://www.youtube.com/
To view or add a comment, sign in
-
Bangla Java Tutorial 016 - Literals in Java (numeric, char, string, boolean) | Core Java. #Java Literals – Complete Explanation in Bangla In this tutorial, I explained all types of Java Literals: Integer, Floating-Point, Character, String, Boolean, and Null — with examples. Perfect for Bengali students learning Core Java. 📘 Topics Covered: ✅ What is a Literal in Java ✅ Types of Literals in Java ✅ Integer, Floating-Point, Character, String, Boolean and Null Literal 🔑 Keywords: Java, Core Java, Java Literals, Integer, Float, String, Boolean, Null, Java for Beginners, Learn Java Bangla, Java Programming Language, Java Course. 🎓 Perfect for Java learners and new developers. 📺 Watch full tutorial : https://lnkd.in/gaJj4d6t #Java #CoreJava #JavaLiterals #JavaLiteralsType #BanglaTutorial #JavaProgramming #javatutorial #LearnJava
Bangla Java Tutorial 016 - Literals in Java (numeric, char, string, boolean) | Core Java
https://www.youtube.com/
To view or add a comment, sign in
-
Bangla Java Tutorial 018 - Java Variables & Data Types (Overview) Part - 02 | Core Java #Java Variables – Complete Explanation in Bangla In this tutorial, I explained about Java Variables Scope, Variables Common Mistakes and Memory Concept — with examples. Perfect for Bengali students learning Core Java. 📘 Topics Covered: ✅ Java Variables Scope (Local, Instance, Static) ✅ Java Variables Common Mistakes ✅ Memory Concept (Stack and Heap) 🔑 Keywords: Java, Core Java, Java Variables Scope, Java Variables Common Mistakes, Memory Concept Stack Heap, Java for Beginners, Learn Java Bangla, Java Programming Language, Java Course. 🎓 Perfect for Java learners and new developers. 📺 Watch full tutorial : https://lnkd.in/gZMApapD #Java #CoreJava #JavaVariables #JavaMemory #BanglaTutorial #JavaProgramming #javatutorial #LearnJava
Bangla Java Tutorial 018 - Java Variables & Data Types (Overview) Part - 02 | Core Java
https://www.youtube.com/
To view or add a comment, sign in
-
Bangla Java Tutorial 017 - Java Variables & Data Types (Overview) Part - 01 | Core Java #Java Variables – Complete Explanation in Bangla In this tutorial, I explained Java Variables: Primitive and Non-Primitive — with examples. Perfect for Bengali students learning Core Java. 📘 Topics Covered: ✅ What is Java Variables? ✅ Java Variable Rules & Naming Conventions ✅ How to Declare and Initialize Java Variables ✅ Primitive vs Non-Primitive Data Types 🔑 Keywords: Java, Core Java, Java Variables, Java Primitive Data Types, Java Non-Primitive Data Types, Java for Beginners, Learn Java Bangla, Java Programming Language, Java Course. 🎓 Perfect for Java learners and new developers. 📺 Watch full tutorial : https://lnkd.in/gSFr2Pyg #Java #CoreJava #JavaVariables #JavaDataTypes #BanglaTutorial #JavaProgramming #javatutorial #LearnJava
Bangla Java Tutorial 017 - Java Variables & Data Types (Overview) Part - 01 | Core Java
https://www.youtube.com/
To view or add a comment, sign in
-
🌟 Understanding Packages in Java 🌟 In Java, packages are used to group related classes, interfaces, and sub-packages together. They help in organizing code systematically and avoiding naming conflicts. There are two types of packages in Java:- 1️⃣ Built-in Packages – Provided by Java (e.g., java.util, java.io, java.lang). 2️⃣ User-defined Packages – Created by developers to organize their own classes. ✅ Benefits of using Packages:- Helps in maintaining a clean and modular structure Prevents naming conflicts Provides access control and reusability Makes project management easier 🧠 Example:- package com.example.demo; public class HelloWorld { public static void main(String[] args) { System.out.println("Hello from my package!"); } } By using packages, we make our code more organized, reusable, and scalable — a key practice in professional Java development. Special thanks to my mentor Anand Kumar Buddarapu for guiding me throughout my Java learning journey! #Java #Programming #Learning #SoftwareDevelopment #Mentorship #PackagesInJava #Codegnan
To view or add a comment, sign in
-
-
🚀Master Java with These Handwritten Notes!💡 🎯Struggling with Java? Say no more! These handwritten notes break down Java concepts in an easy-to-understand way, perfect for beginners and experts alike.📖⭐ ✅Clear & concise explanations ✅Covers core Java topics ✅Perfect for quick revision 📥Grab your free copy here Don't forget to like, comment, and share if you find it useful!🔥 Please repost 🔁 and 🔔 follow Akanksha Kushwaha for more. #Java #Coding #Programming #JavaNotes #SoftwareDevelopment #TechCommunity #LearnJava
To view or add a comment, sign in
-
🎥 Java for Newbies #3 — Class: Blueprint in Action If you still think a class is just “some code container,” you’re missing the most important foundation of Java. In this video, I’ve explained how a class becomes the blueprint for every object in your program — what it stores, how it behaves, and where it lives in memory. This topic builds the bridge between “writing code” and “thinking in Java.” 📘 Watch the full lecture on YouTube. 🧾 The detailed blog version is already published — no need to make notes, just learn freely. https://lnkd.in/gk7zJ-ZU #javafornewbies #java #levelupyourprogrammingwithnitin https://lnkd.in/gzxij3F4
Class in Java — Blueprint, Structure, and Naming Rules | Java for Newbies Series
https://www.youtube.com/
To view or add a comment, sign in
-
💼 📚 Java Project: LIBRARY MANAGEMENT SYSTEM I’m excited to share my latest Java project — Library Management System, a simple yet efficient console-based application designed to manage books in a library. ✅ Features : 🔹 Add new books to the library database 🔹 Borrow books (marking them as unavailable once borrowed) 🔹 Return books (updating their status to available) 🔹 View the complete inventory with real-time status tracking ✅ Java fundamentals and object-oriented design #Java #Programming #StudentProjects #LibraryManagementSystem #JavaDevelopment
To view or add a comment, sign in
Explore related topics
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development