28/03/2023
Understanding the Document Object Model (DOM).
We trying to create a terminal for our programmer who can learn efficient code for leading next generation technology industry.
28/03/2023
Understanding the Document Object Model (DOM).
IEnumerable VS IList In C #:
=================
In LINQ to query data from collections, we use IEnumerable and IList for data manipulation. IEnumerable is inherited by IList, hence it has all the features of it and except this, it has its own features. IList has below advantage over IEnumerable.
IList:
====
1. IList exists in System.Collections Namespace.
2. IList is used to access an element in a specific position/index in a list.
3. Like IEnumerable, IList is also best to query data from in-memory collections like List, Array etc.
4. IList is useful when you want to Add or remove items from the list.
5. IList can find out the no of elements in the collection without iterating the collection.
6. IList supports deferred ex*****on.
7. IList doesn't support further filtering.
IEnumerable:
=========
1. IEnumerable exists in System.Collections Namespace.
2. IEnumerable can move forward only over a collection, it can’t move backward and between the items.
3. IEnumerable is best to query data from in-memory collections like List, Array etc.
4. IEnumerable doesn't support add or remove items from the list.
5. Using IEnumerable we can find out the no of elements in the collection after iterating the collection.
6. IEnumerable supports deferred ex*****on.
7. IEnumerable supports further filtering.
Thanks,
Coder Oxygen BD
12/11/2022
ICPC World Final Result - Bangladesh
1. BUET - 51th - Solved 4 Problems
2. SUST - 56th - Solved 4 Problems
3. DU - 82th - Solved 3 Problems
4. JU - 98th - Solved 2 Problems
5. NSU - 107th - Solved 2 Problems
6. AIUB - 113th - Solved 1 Problem
7. UAP - 119th - Solved 1 Problem
8. RUET - 122th - Solved 1 Problem
11/11/2022
Look at that colorful contest floor! 👀🎈The 45th ICPC World Finals in Dhaka, Bangladesh
==> Static Class In C #
1. A static class is a class that cannot be instantiated.
2. You can‘t create an object for the static class
3. A static class can contain static members only.
# Static Members:
There are two types of C # static class members :
1. static and
2. non-static.
Static Members:
If you use the "static" keyword for the declaration of a field / property or a method, then it is called a "Static member".
Example:
//static data members
public static string CollegeName = "CoderOxygen College of Technology";
Non-static members:
This is the default type for all the members. If you do not use the "static" keyword for the declaration of a field / property or a method, then it can be called a "Non-static member".
Example:
//non-statcic data members
public string StudentName;
Best Wishes To All,
Coder Oxygen BD
Rust is a systems level programming language.
Systems and application programming languages face two major problems −
It is difficult to write secure code.
It is difficult to write multi-threaded code.
Why Rust?
Rust focuses on three goals −
Safety
Speed
Concurrency
27/09/2022
| Monday | 09:00 - 21:00 |
| Tuesday | 09:00 - 21:00 |
| Wednesday | 09:00 - 21:00 |
| Friday | 09:00 - 21:00 |
| Saturday | 09:00 - 21:00 |
| Sunday | 09:00 - 21:00 |