- 31
- 3 888
ByteMentor Hub
India
เข้าร่วมเมื่อ 2 ส.ค. 2014
Welcome to ByteMentor Hub - Your Ultimate Destination for .NET Full Stack Development!
🚀 About ByteMentor Hub:
ByteMentor Hub is your go-to TH-cam channel for everything related to .NET Full Stack Development! Whether you're a seasoned developer looking to stay updated with the latest trends or a beginner eager to dive into the world of software development, this is the perfect place for you.
🔧 What to Expect:
🖥️ In-Depth Tutorials: Dive deep into .NET technologies, including ASP.NET, C#, Entity Framework, and more. Our step-by-step tutorials cater to developers of all levels, ensuring everyone can enhance their skills.
Subscribe now and embark on a journey of continuous learning and development with ByteMentor Hub. Let's code, connect, and create together! 💻🌐 #ByteMentorHub #DotNET #FullStackDevelopment #CodingCommunity
🚀 About ByteMentor Hub:
ByteMentor Hub is your go-to TH-cam channel for everything related to .NET Full Stack Development! Whether you're a seasoned developer looking to stay updated with the latest trends or a beginner eager to dive into the world of software development, this is the perfect place for you.
🔧 What to Expect:
🖥️ In-Depth Tutorials: Dive deep into .NET technologies, including ASP.NET, C#, Entity Framework, and more. Our step-by-step tutorials cater to developers of all levels, ensuring everyone can enhance their skills.
Subscribe now and embark on a journey of continuous learning and development with ByteMentor Hub. Let's code, connect, and create together! 💻🌐 #ByteMentorHub #DotNET #FullStackDevelopment #CodingCommunity
oops interview questions and answers in c#
oops interview questions and answers in c#
1.What are the four principles of OOP?
2.What is the difference between Abstraction and Encapsulation?
3.What is inheritance in C#?
4.What is encapsulation in C#?
5.What is Abstraction in C#?
6. What is Polymorphism in C#?
1.What are the four principles of OOP?
2.What is the difference between Abstraction and Encapsulation?
3.What is inheritance in C#?
4.What is encapsulation in C#?
5.What is Abstraction in C#?
6. What is Polymorphism in C#?
มุมมอง: 10
วีดีโอ
Print first character of every word in C#
มุมมอง 368 หลายเดือนก่อน
Input : "This is a sample sentence" Output : Tiass Time Complexity: O(n) space Complexity: O(1). Approach :-splitting the input string into words and then accessing the first character of each word...
Check if pair with given Sum exists in Array (Two Sum)
มุมมอง 769 หลายเดือนก่อน
Check if pair with given Sum exists in Array (Two Sum) Input: arr[] = {1, 2, 3, 4, 5, 6, 7, 8, 9}, targetSum= 10 Output: Yes 1.Brute force approach using nested loops Time Complexity: O(n^2) Space Complexity: O(1) 2.Using sorting and two pointers approach Time Complexity: O(n log n) Space Complexity: O(1) 3.Efficient approach using hash table Time Complexity: O(n) Space Complexity: O(n)
Dependency inversion principle in C#
มุมมอง 4910 หลายเดือนก่อน
1.High-level modules should not depend on low-level modules. Both should depend on abstractions. 2.This principle encourages the use of interfaces or abstract classes to define dependencies, allowing for more flexible and maintainable code.
Interface segregation principle in C#
มุมมอง 5610 หลายเดือนก่อน
A client should never be forced to implement interfaces it does not use
Liskov substitution principle in C#
มุมมอง 8610 หลายเดือนก่อน
Objects of a derived class should be able to replace objects of the base class without affecting the correctness of the program.
open closed principle in C#
มุมมอง 4410 หลายเดือนก่อน
1.Software entities (classes, modules, functions, etc.) should be open for extension but closed for modification. 2.You should be able to add new functionality without altering the existing code
Single responsibility principle in C#
มุมมอง 10210 หลายเดือนก่อน
A class should have only one responsibility or only one piece of functionality.
Segregate 0s & 1s in given Array in C#
มุมมอง 3310 หลายเดือนก่อน
Input = {0, 0, 1, 0, 1, 0, 0, 1, 1, 1} Output = {0, 0, 0, 0, 0, 1, 1, 1, 1, 1} How to solve Swapping elements. This program uses two pointers (left and right) to traverse the array from both ends, swapping odd and even numbers when found. Time complexity: O(n) Space Complexity:O(1)
Segregate Even and Odd numbers in an array in C#
มุมมอง 5110 หลายเดือนก่อน
Input = {2, 4, 1, 6, 3, 8, 7, 3} Output = {2, 4, 8, 6, 3, 1, 7, 3} How to solve Swapping elements. This program uses two pointers (left and right) to traverse the array from both ends, swapping odd and even numbers when found. Time complexity: O(n) Space Complexity:O(1)
Find all distinct quadruplets in an array in C#
มุมมอง 4010 หลายเดือนก่อน
Input: arr[] = {1, 0, -1, 0, -2, 2}, S = 0 Output: -2, -1, 1, 2 -2, 0, 0, 2 -1, 0, 0, 1 Sort - { -2, -1, 0, 0, 1, 2 } First approach Using a nested loop (4 loops) Time complexity: O(n^4) space complexity :O(1) Second approach Two-pointer technique along with sorting (left ,right) Time complexity: O(n^3) space complexity :O(1)
Find all Triplets for given Sum in C# | Check if Triplet exists for given Sum in C#
มุมมอง 5910 หลายเดือนก่อน
First Approach Using 3 loops (brute-force approach) Time Complexity: O(n^3) Space Complexity: O(1) Second Approach Using Two-Pointer Approach (Left,Right) Time Complexity: O(n * log(n)) O(n^2) O(n^2) Space Complexity: O(1)
Remove all duplicates from Sorted Array in C#
มุมมอง 8311 หลายเดือนก่อน
Remove all duplicates from Sorted Array
Find Intersection of two unsorted arrays in C#
มุมมอง 165ปีที่แล้ว
Find Intersection of two unsorted arrays in C#
Find the first repeating value in an array in C#
มุมมอง 132ปีที่แล้ว
Find the first repeating value in an array in C#
Selection Sort in Data Structure | Selection Sort Algorithm with C# Program
มุมมอง 52ปีที่แล้ว
Selection Sort in Data Structure | Selection Sort Algorithm with C# Program
How to Delete an element from Array at specific position in C#
มุมมอง 763ปีที่แล้ว
How to Delete an element from Array at specific position in C#
How to insert element in an array at specific position in C#
มุมมอง 1.5Kปีที่แล้ว
How to insert element in an array at specific position in C#
The efficient approach is O(n) because you need to query the hash table for each array element (n times). Thanks.
many many thanks my dear brother
Hi can I get your mail id.? I need to talk
You're a good teacher
Keep it up. Increase your stats = *Promo SM*!