Fission Coding
Fission Coding
  • 20
  • 1 371
Accenture 2024 Coding Problem Solution: Distribute Mangoes Among Persons
In this video, I walk you through a coding problem from the Accenture 2024 September exam: how to distribute identical mangoes among identical persons. We’ll start with the problem statement, break it down using a recursive approach, and then optimize it with dynamic programming (DP). Along the way, I’ll provide multiple examples to ensure you understand how to solve similar problems efficiently.
Переглядів: 22

Відео

Why Private Members Are NOT Inherited In Java - The Shocking Truth
Переглядів 102 години тому
In this video, we dive into one of the important rules of Java inheritance: why private members cannot be inherited by subclasses. I’ll explain how access modifiers work in Java, what makes private members different, and provide a clear example to help you understand this concept better. Whether you’re a beginner or preparing for a Java interview, this explanation will solidify your understandi...
TCS NQT October 5 2025 batch Shift 2 Problem 2 Strong Number
Переглядів 4357 годин тому
In this video, we tackle Problem 2 from the TCS NQT exam held on October 5, 2025 (Shift 2) for the 2025 batch. The problem involves identifying Strong Numbers in a given array. A Strong Number is a number where the sum of the factorial of its digits equals the number itself. For example, 145 is a strong number because: 1! 4! 5! = 1 24 120 = 145. We break down the logic step by step and walk you...
TCS NQT October 5 2025 batch Shift 2 Problem 1 Solve Train Length
Переглядів 1447 годин тому
Welcome to our comprehensive guide for the TCS NQT October 5, 2025 batch! In this video, we dive into Problem 1: Solve the Train Length from Shift 2. 🚂 What You’ll Learn: Understanding the fundamentals of train length problems. Step-by-step solutions to common questions. Tips and tricks to tackle similar problems in your TCS NQT exam. Whether you're preparing for the TCS NQT or just want to sha...
Rules Of Inheritance In Java !Multilevel, Cyclic, and Hybrid Inheritance.
Переглядів 67 годин тому
Rules Of Inheritance In Java !Multilevel, Cyclic, and Hybrid Inheritance. In this video, we explore essential inheritance concepts in Java: Multilevel Inheritance: Discover how classes can inherit across multiple levels in a class hierarchy. Cyclic Inheritance: Learn why cyclic inheritance is not allowed and the issues it creates in Java. Hybrid Inheritance: Understand how Java implements hybri...
Rules Of Inheritance In Java !Multilevel, Cyclic, and Hybrid Inheritance.
Переглядів 199 годин тому
Rules Of Inheritance In Java !Multilevel, Cyclic, and Hybrid Inheritance. In this video, we explore essential inheritance concepts in Java: Multilevel Inheritance: Discover how classes can inherit across multiple levels in a class hierarchy. Cyclic Inheritance: Learn why cyclic inheritance is not allowed and the issues it creates in Java. Hybrid Inheritance: Understand how Java implements hybri...
Hierarchical Inheritance in Java
Переглядів 1612 годин тому
Hierarchical Inheritance in Java In this video, we dive into Hierarchical Inheritance in Java, explaining the concept with simple and clear examples. Hierarchical inheritance allows multiple classes to inherit from a single parent class, which is essential in organizing and reusing code efficiently in object-oriented programming.
Multilevel Inheritance in Java
Переглядів 3314 годин тому
Welcome to Fission Coding! 🎉 Multilevel Inheritance in Java In this video, we dive into Multilevel Inheritance in Java, an essential concept for building hierarchical class relationships. 🚀 Learn how a class can inherit from another class, which itself inherits from another, creating a chain of inheritance. I’ll walk you through easy-to-understand examples to ensure you grasp how this works in ...
Rules Of Inheritance in Java!
Переглядів 2616 годин тому
Rules Of Inheritance in java Inheritance! Learn how inheritance allows one class to acquire the properties and behaviors of another class, enabling code reusability and maintainability.
Inheritance in Java!
Переглядів 2519 годин тому
Inheritance in java Welcome to another lesson on Core Java! In this video, we'll dive deep into the concept of Inheritance, a fundamental principle of Object-Oriented Programming (OOP). You’ll learn how inheritance helps in code reusability and simplifies programming by allowing a class to inherit properties and behaviors from another class.
Understanding of Method Overloading #Method # Java
Переглядів 48День тому
In today’s video, we dive into method overloading in Java. 📘 Learn how to use the same method name to perform different tasks, making your code more flexible and efficient.
Java 'this' Keyword vs 'this()' Method | Key Differences Explained.
Переглядів 29День тому
By the end of this video, you'll have a solid understanding of how this and this() work and how to effectively use them in your Java programs.
Constructor Channing in Java
Переглядів 5414 днів тому
In this video, we dive deep into Constructor Chaining in Java, a powerful technique that simplifies code and enhances reusability. You'll learn how to link multiple constructors in a class using the this() keyword.
About this() method in java
Переглядів 6014 днів тому
In this video, we dive deep into the this() method in Java, a crucial concept in object-oriented programming! Learn how to use this() to simplify constructor chaining and avoid code duplication in your Java programs. Whether you're a beginner or looking to refine your skills, this tutorial will help you understand how this() works and why it’s so important in Java.
Understanding Constructor Overloading
Переглядів 4114 днів тому
Welcome to our channel! In this video, we’ll dive deep into the concept of constructor overloading in Java. You'll learn what constructor overloading is, why it’s useful, and how to implement it effectively in your code.
Understanding Constructors in Object-Oriented Programming
Переглядів 5821 день тому
Understanding Constructors in Object-Oriented Programming
Understanding Shadowing Issues in OOP
Переглядів 5621 день тому
Understanding Shadowing Issues in OOP
Encapsulation in Java: Understanding Setters, Getters, and Memory Diagrams Explained
Переглядів 4521 день тому
Encapsulation in Java: Understanding Setters, Getters, and Memory Diagrams Explained
Encapsulation in Java
Переглядів 146Місяць тому
Encapsulation in Java
Add Plus Minus Sign || CodeForces Polynomial Round 2022
Переглядів 137Рік тому
Add Plus Minus Sign || CodeForces Polynomial Round 2022

КОМЕНТАРІ

  • @tanishqnarang1366
    @tanishqnarang1366 22 години тому

    for the same code I got an error saying "This code exceeds the time limit" 😭

    • @fissioncoding
      @fissioncoding 22 години тому

      With the optimisation it will give the TLE. See the complete video I have done the brute force and then the optimisation.

  • @rkninja-pc4ko
    @rkninja-pc4ko День тому

    For the same code i got only 6 test case passed. And everyone known to me have only passed 6 test cases. I don't know whether the internal test cases provided by TCS is wrong or correct. (If someone faced this 6 test cases passed then comment :))

    • @fissioncoding
      @fissioncoding День тому

      There might be some issues with the private test cases. If this is the case then normalisation will be done for this shift.

    • @allauddinxtc1795
      @allauddinxtc1795 День тому

      I also faced same issue

    • @Sam__056
      @Sam__056 День тому

      probably there is a private testcase which does not have any strong numbers so we end up printing the strong numbers in the queue are : (basically this case we dont know what to print if there are no strong numbers in the queue.)

    • @mdasadalihaidar1920
      @mdasadalihaidar1920 День тому

      ​@@Sam__056 This might be the case. But nothing was said related to the result without any strong numbers.

  • @ALShadKhan-s4x
    @ALShadKhan-s4x День тому

    explanation is very good😊

  • @girijaveera3743
    @girijaveera3743 2 дні тому

    Thankyou

  • @mdasadalihaidar1920
    @mdasadalihaidar1920 4 дні тому

    Great explanation ✨✨

  • @afsarinnaaz9561
    @afsarinnaaz9561 18 днів тому

    Thanku mam very helpful ❤

  • @INFINITYRANGE-y5s
    @INFINITYRANGE-y5s 21 день тому

    From which software do you used for audio editing?

    • @fissioncoding
      @fissioncoding 21 день тому

      Thanks for your question! I don't use any special software for recording audio; I just rely on a good quality microphone to capture clear sound. If you're looking for a recommendation, investing in a decent microphone can make a big difference!"

  • @INFINITYRANGE-y5s
    @INFINITYRANGE-y5s 21 день тому

    Good content 👍👍 keep it up

  • @zebaafreen7464
    @zebaafreen7464 Рік тому

    👍👍