harichselvamc
harichselvamc
  • Видео 54
  • Просмотров 1 893
Java Program to Check Happy Numbers | QSpiders Assignment Solved
Welcome to my channel! 🚀
In this video, I solve a Java programming assignment to determine whether a number is a Happy Number. This task involves looping through the digits of a number and applying mathematical operations to check its properties, making it a fun and challenging problem to solve.
What’s a Happy Number?
A number is considered a Happy Number if repeatedly replacing it with the sum of the squares of its digits eventually leads to 1. If it loops endlessly without reaching 1, it’s not a Happy Number.
What You’ll Learn in This Video:
Concept and logic behind Happy Numbers.
Implementation of the Happy Number algorithm in Java.
Using loops, conditions, and mathematical operations to solv...
Просмотров: 7

Видео

Java Program to Check Neon Numbers | QSpiders Assignment Solved
Просмотров 1115 часов назад
Welcome to my channel! 🚀 In this video, I solve a Java assignment to determine whether a number is a Neon Number. This program is an excellent way to practice arithmetic operations, loops, and conditional statements in Java. What’s a Neon Number? A number is called a Neon Number if the sum of the digits of its square is equal to the number itself. For example: Input: 9 Square: 81 Sum of Digits:...
Java Program to Generate Fibonacci Series | QSpiders Assignment Solved
Просмотров 816 часов назад
Join me as I solve a QSpiders Java assignment by creating a program to generate the Fibonacci series! 🚀 Program Highlights: This program generates the Fibonacci series up to a given number, starting from 0 and 1. Using simple logic and iterative loops, it demonstrates: Handling edge cases (like input 0 and 1). Using loops to generate the sequence dynamically. Key Concepts: Loops in Java Conditi...
Java Program to Check Leap Year | QSpiders Assignment
Просмотров 516 часов назад
In this video, I solve a QSpiders Java assignment by writing a program to check whether a given year is a leap year or not. 🚀 Program Overview: The program uses nested if-else conditions to validate leap years based on these rules: A year is a leap year if it's divisible by 4. However, if it's also divisible by 100, it must be divisible by 400 to be considered a leap year. This exercise demonst...
Java Programs for Prime Numbers and Perfect Squares | QSpiders Assignment
Просмотров 62 часа назад
In this video, I solve multiple Java assignments focused on prime numbers and perfect squares as part of the QSpiders training program! 🖥️ Let's dive into essential concepts of Java programming with these tasks: Programs Covered: Check Prime Number: A Java program to determine if a given number is prime. Prime Numbers in a Range: Print all prime numbers within a specified range. Sum of Prime Nu...
Java Assignments: Loops, Tables, Factors, and More | QSpiders Java Tasks
Просмотров 44 часа назад
In this video, I tackle a series of Java programming assignments as part of the QSpiders Training Program. These assignments focus on mastering loops, conditionals, and mathematical operations through practical tasks. Watch as I explain and implement each problem step by step! 🚀 Key Tasks Solved: Print Alphabets (A-Z & Z-A): Using loops to display alphabets in ascending and descending order. Nu...
Java Assignment: Number Guessing Game with Do-While Loop | QSpiders Task
Просмотров 239 часов назад
Welcome back to another QSpiders Java Assignment solution! 🚀 In this video, I implement a fun and interactive Number Guessing Game using a do-while loop in Java. This program challenges the user to guess a randomly generated number between 0 and 9, providing hints like "Value is too low" or "Value is high" until the correct guess is made. After each round, the player has the option to continue ...
LeetCode Solution: Rotate Image | Learning by Doing with harichselvamc
Просмотров 69 часов назад
Welcome to my Learning by Doing series! 🚀 In this video, I solve the LeetCode problem Rotate Image. This problem involves rotating a 2D matrix 90 degrees clockwise in-place. It's a classic array manipulation challenge that tests our understanding of matrix transposition and row reversal. 🔗 Problem Link: Rotate Image : leetcode.com/problems/rotate-image/description/ This solution highlights: Mat...
LeetCode Solution: Number of Good Pairs | Learning by Doing with harichselvamc
Просмотров 712 часов назад
Welcome back to my Learning by Doing series! 🚀 In this video, I solve the LeetCode problem Number of Good Pairs, a simple yet insightful problem involving arrays and pair counting. The problem challenges us to efficiently find the number of identical pairs in a list based on certain conditions. 🔗 Problem Link: Number of Good Pairs- leetcode.com/problems/number-of-good-pairs This problem helped ...
SQL Group By Clause | QSpiders Assignment Solved | Learning by Doing with harichselvamc
Просмотров 812 часов назад
Welcome back to my Learning by Doing series! 🚀 In this video, I tackle an SQL assignment on the GROUP BY clause, a fundamental concept for organizing and summarizing data in relational databases. These questions are part of the QSpiders Training Program, designed to enhance SQL proficiency through practical challenges. Assignment Questions: Find the number of employees working in each departmen...
Matrix Diagonal Sum | LeetCode Problem Solved | Learning by Doing with harichselvamc
Просмотров 1814 часов назад
Welcome back to my Learning by Doing series! 🚀 In this video, I solve the LeetCode Problem: Matrix Diagonal Sum, a popular matrix-based coding challenge. This problem involves calculating the sum of all diagonal elements in a square matrix while ensuring no element is counted twice. Problem Link: Matrix Diagonal Sum - LeetCode- leetcode.com/problems/matrix-diagonal-sum/description/ Key Highligh...
QSpiders Java Assignment: Xylem or Phloem Program | Learning by Doing with harichselvamc
Просмотров 1114 часов назад
Welcome back to my Learning by Doing series! 🚀 In this video, I tackle a QSpiders Java Assignment: Writing a program to determine whether a number is Xylem or Phloem. This concept involves analyzing the sum of the first and last digits of a number compared to the sum of the digits in between. Here's a breakdown of what you'll learn: What is Xylem and Phloem in Numbers? A number is Xylem if the ...
LeetCode Maximum Product of Two Elements in an Array | Learning by Doing with harichselvamc
Просмотров 1014 часов назад
Welcome to another episode of Learning by Doing! 🚀 In this video, I solve the LeetCode problem "Maximum Product of Two Elements in an Array", a popular array manipulation challenge that helps you strengthen your problem-solving skills in Python. Problem Statement: Given an integer array nums, choose two different indices i and j of the array such that the product of (nums[i] - 1) and (nums[j] -...
LeetCode Two Sum Problem: Beginner-Friendly Python Solution | Learning by Doing with harichselvamc
Просмотров 816 часов назад
Welcome to another episode of Learning by Doing! 🚀 In this video, I solve the popular LeetCode Two Sum Problem, a beginner-friendly coding challenge that’s perfect for improving your logic-building skills in Python. Problem Statement: Given an array of integers nums and an integer target, return the indices of the two numbers such that they add up to the target. Why Watch This Video? Learn the ...
Java Program to Check If a Number is Positive, Negative, or Zero | Learning by Doing
Просмотров 921 час назад
Welcome to another video in my Learning by Doing series! 🚀 In this video, I demonstrate how to write a Java program that checks whether a number is positive, negative, or zero. This simple yet essential program is a great way to understand conditional statements (if, else if, and else) in Java. Program Overview: Input: The user is prompted to enter a number. Output: Displays "The user input is ...
SQL Special Operators Assignment: Filtering Employees Based on Name Criteria | QSpiders
Просмотров 12День назад
SQL Special Operators Assignment: Filtering Employees Based on Name Criteria | QSpiders
SQL Assignment: Exploring Multi-Row Functions | Min, Max, Avg, Count, and Sum | QSpiders
Просмотров 20День назад
SQL Assignment: Exploring Multi-Row Functions | Min, Max, Avg, Count, and Sum | QSpiders
BenQ GW2790 1-Month Honest Review | Auto-Brightness, Eye-Care Features & More
Просмотров 108День назад
BenQ GW2790 1-Month Honest Review | Auto-Brightness, Eye-Care Features & More
QSpiders SQL Assignment: Exploring Special Operators | Learning by Doing with harichselvamc
Просмотров 37День назад
QSpiders SQL Assignment: Exploring Special Operators | Learning by Doing with harichselvamc
QSpiders Assignment: Mastering SQL WHERE Clause | Learning by Doing with harichselvamc
Просмотров 3314 дней назад
QSpiders Assignment: Mastering SQL WHERE Clause | Learning by Doing with harichselvamc
Interactive Python Greeting Program | Learning by Doing with harichselvamc
Просмотров 1314 дней назад
Interactive Python Greeting Program | Learning by Doing with harichselvamc
Input Function Challenge | Python Basics | Learning by Doing with harichselvamc
Просмотров 314 дней назад
Input Function Challenge | Python Basics | Learning by Doing with harichselvamc
SQL WHERE Clause - Practical Assignments | Learning by Doing with harichselvamc
Просмотров 1514 дней назад
SQL WHERE Clause - Practical Assignments | Learning by Doing with harichselvamc
Switch Values in Programming | 3 Universal Methods Explained | Learning by Doing with harichselvamc
Просмотров 1114 дней назад
Switch Values in Programming | 3 Universal Methods Explained | Learning by Doing with harichselvamc
QSpiders SQL Assignment | WHERE Clause Mastery | Oracle SQL Practice
Просмотров 1614 дней назад
QSpiders SQL Assignment | WHERE Clause Mastery | Oracle SQL Practice
QSpiders SQL Assignment | Expressions & Aliases | Oracle SQL Practice
Просмотров 3114 дней назад
QSpiders SQL Assignment | Expressions & Aliases | Oracle SQL Practice
From Idea to Code: Updating My Project Ideas in Notion | Learning by Doing with harichselvamc
Просмотров 3121 день назад
From Idea to Code: Updating My Project Ideas in Notion | Learning by Doing with harichselvamc
GeeksforGeeks Selection Sort | Learning to Learn with harichselvamc
Просмотров 1328 дней назад
GeeksforGeeks Selection Sort | Learning to Learn with harichselvamc
QSpiders Java Assignment Tasks-1| Solving Basic Java Programs | Learning to Learn with harichselvamc
Просмотров 2928 дней назад
QSpiders Java Assignment Tasks-1| Solving Basic Java Programs | Learning to Learn with harichselvamc
GeeksforGeeks Union of Two Arrays | Learning to Learn with harichselvamc
Просмотров 528 дней назад
GeeksforGeeks Union of Two Arrays | Learning to Learn with harichselvamc

Комментарии

  • @namasthemallu
    @namasthemallu 7 дней назад

    bro i am planing to buy this monitor mainly for mediaa consumption watching netflix movies etc can i buy this or go for 24 inch

    • @harichselvamc
      @harichselvamc 7 дней назад

      Hi bro, thanks for your comment! For media consumption, I’d recommend going for a higher resolution, like QHD, instead of FHD. You can find 24-inch QHD monitors priced below ₹17K, which would offer better clarity and color depth. Alternatively, a 27-inch monitor with HDR10 support would be a great choice if you want deeper blacks and enhanced visuals. Hope this helps, and feel free to ask if you need more suggestions!

    • @namasthemallu
      @namasthemallu 7 дней назад

      @harichselvamc ok bro so its better to take 24 inch fhd if need 27 inch i should choose 2k monitor ryt ok... Bro 24inch fhd will be good ryt benq

    • @harichselvamc
      @harichselvamc 7 дней назад

      Yes bro if possible 24inch QHD is better if 27 or 32inch means HDR+ support is good bcz 27 or 32inch QHD is cost high

    • @namasthemallu
      @namasthemallu 7 дней назад

      @@harichselvamc ok bro thnks my budget is also limit so now i am planing to buy 24 inch monitor bro 24 inch fhd if there is any offer i will go for 27 inch wqhd acer monitor... But for now from your opinion i will go with 24 inch fhd rather than 27 inch bro... Bcoz of budget and also clarity is better in 24 inch ryt pls confirm bro

    • @namasthemallu
      @namasthemallu 7 дней назад

      @@harichselvamc bro acer rs 24 2y w monitor it support hdr 10 cost below 11000 can i buy that.. Hdr 10 27 inch also there for this model

  • @itpraveenvs
    @itpraveenvs 11 дней назад

    bro i have doubts

    • @harichselvamc
      @harichselvamc 11 дней назад

      Hi bro! Sorry for the late reply. Feel free to share your doubts here , and I’ll do my best to help you out. Thanks for watching and engaging! 😊

  • @itpraveenvs
    @itpraveenvs 11 дней назад

    bro really great and understandable keep going🔥🔥🔥🔥

    • @harichselvamc
      @harichselvamc 11 дней назад

      Thanks for watching, I'm glad it helped you understand! Keep practicing!

  • @multiplexmovies2222
    @multiplexmovies2222 12 дней назад

    Sir it isn't audible

    • @harichselvamchandrasekaran1846
      @harichselvamchandrasekaran1846 11 дней назад

      Hi, I’m sorry to tell you that I haven’t added voiceovers to any of my videos so far. However, if you’d like me to explain the code and concepts in an upcoming video, I’ll be happy to do that! Thanks for your comment, and sorry for the late reply.😊

  • @akash-kumar737
    @akash-kumar737 Месяц назад

    1080p 27inch is a bad choice man should have gone with 2k or 24inch 1080p.

    • @harichselvamc
      @harichselvamc Месяц назад

      Thanks for your comment⁣, 😊I understand your point, and I chose this monitor mainly for coding rather than gaming or entertainment. For my current needs, I felt 1080p with 100Hz would be sufficient. That said, I’m planning to explore ultrawide options like 34-inch or 29-inch in the future-stay tuned for updates! I’ll also be sharing a 1-month review of this monitor soon. I appreciate your feedback! 🙌

    • @tylerdurden7689
      @tylerdurden7689 22 дня назад

      Hi brother, im planning to buy this monitor for office work. Could you please share your 1 month experience? Any blurry text issue faced in 27 inch 1080 p

    • @harichselvamc
      @harichselvamc 13 дней назад

      @@tylerdurden7689 Hi brother, sorry for the late reply! I haven’t faced any issues like blurry text, flickering, or the "painted" text effect that can happen when using a TV as a monitor. The text on this monitor is clear, vibrant, and perfectly suited for office work or coding. I’ll be uploading the 1-month review of this monitor soon, covering all the details, pros, and cons. Thanks for your patience and understanding! 😊