- Видео 161
- Просмотров 823 811
Anindita Das Bhattacharjee
Индия
Добавлен 2 апр 2020
"Unveiling concepts in C, C++, Java, DBMS, Machine Learning, Data Science, Artificial Intelligence, Python, R with hands-on coding and Geo-Spatial Data Analysis with R - Connecting Theory to Real-World Impact" is not just a channel; it's a conduit to bridging theoretical concepts with tangible societal contributions. By offering an array of modern applications, this channel empowers readers to correlate their knowledge with real-world solutions, thereby inspiring them to harness the transformative potential of different computer science related papers for the betterment of society at large.
AVL Tree Deletion
An AVL tree, named after its inventors Adelson-Velsky and Landis, is a special type of Binary Search Tree (BST) that keeps itself balanced. This means that the height difference between the left and right subtrees of any node is no more than one. You can insert, delete, and search for items in an AVL tree just like in a BST. To stay balanced, an AVL tree can rotate its subtrees in four ways: left rotation (when a new node makes the right side too tall), right rotation (when a new node makes the left side too tall), left-right rotation (a left rotation followed by a right rotation), and right-left rotation (a right rotation followed by a left rotation). AVL trees are useful for indexing la...
Просмотров: 22 056
Видео
Normalization in DBMS Part 3 | BCNF
Просмотров 14 тыс.5 месяцев назад
In this video, I have covered Database Normalization BCNF, including the difference between 3NF and BCNF Normal form. Learn how to reduce data redundancy and improve data integrity through practical examples of normalization. Whether you're studying for your DBMS exams or preparing for an interview, this tutorial on normalization will definitely help you. #Step by step database normalization #D...
Database Normalization Explained: 1NF, 2NF, 3NF, BCNF Simplified | DBMS Tutorial
Просмотров 26 тыс.6 месяцев назад
In this video, I have covered Database Normalization 1NF, 2NF, 3NF, and BCNF, including the difference between 3NF and BCNF Normal form. Learn how to reduce data redundancy and improve data integrity through practical examples of normalization. Whether you're studying for your DBMS exams or preparing for an interview, this tutorial on normalization will definitely help you. #Step by step databa...
Garbage Collection in Java
Просмотров 4296 месяцев назад
Integer: Integer is a class in Java that wraps a primitive int value into an object. This allows you to treat int values as objects and provides utility methods for working with them. new Integer(4): This part of the statement creates a new instance of the Integer class with the value 4. - An object is said to be unreachable if it doesn’t contain any reference to it. - An object is said to be e...
File Handling Using Thread in Java
Просмотров 3636 месяцев назад
import java.io.FileWriter; import java.io.IOException; These lines import necessary classes from the java.io package. FileWriter is used to write characters to a file, and IOException is an exception that might be thrown during input-output operations. class NumberWriter extends Thread { Defines a new class named NumberWriter which extends the Thread class. This suggests that instances of Numbe...
Introduction to Android Programming
Просмотров 6696 месяцев назад
The lifecycle methods of an Android activity represent different stages of its existence, from creation to destruction. onCreate(): Called when the activity is first created. This is where initialization occurs. onStart(): Called when the activity becomes visible to the user. onResume(): Called when the activity starts interacting with the user. This is typically where animations and audio play...
Multithreading in Java
Просмотров 5998 месяцев назад
Live class interaction with 2nd year CSE and CSE (AI) students on concepts of Multi-Threading in Java Note: The tutorial language in English, however, there are a few vernacular explanations as well Thread Creation in Java : Runnable Interface - ruclips.net/video/VkX1X9Jh3IE/видео.html Multithreading : Thread Synchronization in Java - ruclips.net/video/PZN6lDsn52o/видео.html Threads Scheduling ...
Postorder To Preorder with Shortest Trick
Просмотров 29 тыс.10 месяцев назад
Tree Traversal Overview: Tree traversal is a fundamental operation in computer science, especially in the context of binary trees. There are three primary methods for traversing a binary tree: Preorder, Inorder, and Postorder. 1. Preorder Traversal: - Visit the root node. - Traverse the left subtree in preorder. - Traverse the right subtree in preorder. 2. Inorder Traversal: - Traverse the left...
Preorder To Postorder with Shortest Trick
Просмотров 7 тыс.10 месяцев назад
Tree Traversal Overview: Tree traversal is a fundamental operation in computer science, especially in the context of binary trees. There are three primary methods for traversing a binary tree: Preorder, Inorder, and Postorder. 1. Preorder Traversal: - Visit the root node. - Traverse the left subtree in preorder. - Traverse the right subtree in preorder. 2. Inorder Traversal: - Traverse the left...
Infix To Prefix Conversion
Просмотров 3,2 тыс.11 месяцев назад
In real-life applications, the conversion from Infix to Prefix notation holds practical significance across diverse fields. Prefix notation, where operators precede their operands, is preferred for its simplicity and parsing advantages in representing mathematical expressions. In compiler design, the conversion facilitates optimization strategies and intermediate code generation, adding flexibi...
Recurrent Neural Network & LSTM for Beginners Part 2
Просмотров 5 тыс.Год назад
In this video we will learn - Vanishing & Exploding gradient problem. - Utility & need of 3 different gates used inside LSTM memory cell with real-life example. - Difference between RNN & LSTM. - Working principle of RNN & LSTM. - Activation function used in RNN & LSTM. - Concept of model convergence.
Recurrent Neural Network & LSTM for Beginners Part 1
Просмотров 6 тыс.Год назад
In this video, I have explained - - Introduction to RNN - Basic application of RNN & LSTM - Language Modelling & Generating Text example using RNN - Difference between Recurrence & Back propagation - Concept of temporal sequencing
Convolutional Neural Network for Beginners Part 2
Просмотров 6 тыс.Год назад
In a Convolutional Neural Network (CNN), a kernel (also known as a filter or feature detector) is a small matrix used to convolve over the input image in order to extract relevant features. The importance of the kernel lies in its ability to identify specific patterns or features within an image. By sliding the kernel over the image, it applies a mathematical operation to each section of the im...
Convolutional Neural Network for Beginners Part 1
Просмотров 9 тыс.Год назад
Convolutional Neural Network for Beginners Part 1
Data Analysis and Visualization with Python - Outlier, IQR, Box Plot
Просмотров 11 тыс.2 года назад
Data Analysis and Visualization with Python - Outlier, IQR, Box Plot
Introduction to Artificial Neural Networks & Bias
Просмотров 22 тыс.2 года назад
Introduction to Artificial Neural Networks & Bias
Activation Functions in a Neural Network explained with Python Part 2
Просмотров 2,9 тыс.2 года назад
Activation Functions in a Neural Network explained with Python Part 2
Statistical Analysis: Hypothesis Testing with Python Implementation
Просмотров 8 тыс.2 года назад
Statistical Analysis: Hypothesis Testing with Python Implementation
Hebbian Learning Algorithm with Solved Example
Просмотров 11 тыс.2 года назад
Hebbian Learning Algorithm with Solved Example
Activation Functions in a Neural Network explained with Python Part 1
Просмотров 9 тыс.2 года назад
Activation Functions in a Neural Network explained with Python Part 1
Heuristic Search | Properties | Hill Climbing
Просмотров 8542 года назад
Heuristic Search | Properties | Hill Climbing
Polymorphism in Java | Method & Constructor Overloading | Overriding | Java Tutorial for Beginners
Просмотров 5 тыс.2 года назад
Polymorphism in Java | Method & Constructor Overloading | Overriding | Java Tutorial for Beginners
Encapsulation in Java | Java Tutorial for Beginners
Просмотров 4,4 тыс.2 года назад
Encapsulation in Java | Java Tutorial for Beginners
excellent explanation mam... very much liked that real world human eye analogy
It's my pleasure, happy learning
Your teaching style is fantastic
Amazing video on SVR! Loved the clear explanations on kernels and outlier detection 👍
This video made SVR concepts so clear, especially the part on epsilon-insensitive tube
great breakdown of bias, variance, and overfitting this made video flow made it so easy to follow
how is your video quality so good
On repeat
Osm editing
Really Nice video
🔥🔥🔥🔥🔥🔥
Really good video
Thank you 🙏 so nicely explain
My pleasure, please share with others and Happy Learning
Clearly explained the concept. ❤
Glad it was helpful. Please share with others
Arguably a best video on ANN Perceptron algo
Thank you, glad it was helpful
i have a doubt about unrepeatable read. does unrepeatable read voilates isolation in your example or not. i have confusion
I can't wait for your next videos.
Ya he visto este video varias veces.
Du hast eine fesselnde Art, Informationen zu präsentieren.
Questo video è fantastico!
Thank you, please share with others and Happy Learning
Você tem uma maneira cativante de apresentar informações.
Thank you, please do share with others
You did an amazing job.
Glad it was helpful, please share with others
Este vídeo é incrível!
Glad the video was helpful, please share and Happy Learning
You did an amazing job.
Glad it was helpful, please share with others
🧑🏫Please, provide notes??
You have a bright future in this field.
Thank you 😀
I'm so impressed with your creativity.
Glad you like it, Happy Learning and please share with others
This video deserves more recognition.
Thank you, please share with others
Jesus is the only way to the father
Thank you ma'am. Great video. Understood the concept well.
Glad to hear that, Happy Learning
Very helpful for C beginners! Thank you.
Glad it was helpful!
This video deserves more recognition.
Thanks, this means a lot
This video brings so much positive value.
Glad to hear, Happy Learning
Thank you for creating such a wonderful video.
My pleasure, Happy Learning and please share
I learned so much from this video.
Glad to hear, please share with others
I feel connected to you through this video.
You did an amazing job.
Thank you, Happy Learning and share with others
You did an amazing job.
Glad to hear, please share with others
I've subscribed to your channel.
WoW! thats so nice of you
This video is top-notch quality.
Thank you, please share
Thank you for sharing this valuable information.
You're welcome, share with others, Happy Learning
This video really touched my heart.
Glad to hear, thank you
You did an amazing job.
Glad to hear, please share with others and Happy Learning
The content is truly outstanding.
Thank you, please share with others
This video brings so much positive value.
Glad to hear thank you and Happy Learning
I've watched this video multiple times already.
Thank you, please share with others
You're a true inspiration.
Thank you, means a lot
This video made me think deeply.
Glad it was helpful
You have a bright future in this field.
Thank you 👍
You have a bright future in this field.
Thank you 👍
I can't wait for your next videos.
sure, will try to upload soon