M

Massive MIMO in 5G-NR

3 Min Read
0 795
3 Min Read
0 795

MIMO stands for Multiple Input and Multiple Output. Multiple Input refers to Multiple antennas at the transmitter side which can do multiple transmissions into the propagation channel. Multiple Output refers to the multiple antennas present at the receiver end which…

Continue Reading
C

C++ classes, objects & methods

2 Min Read
0 537
2 Min Read
0 537

What is a class? A class is an object-oriented paradigm or model used to group both data & functionality together. Classes provide additional features like access restriction which we will discuss in detail while going further. class keyword is used…

Continue Reading

Python programming language was created by “Guido van Rossum” and was released in 1991. Python features: Why python is portable? Python is portable because both “python script” (.py) and “python byte code” (.pyc) are platform-independent i.e. you can write once…

Continue Reading
C

C++ Standardization

3 Min Read
0 674
3 Min Read
0 674

C with Classes C++ Cfront 1.0 Cfront 2.0 Standard C++ To know more about C++ Standardization check out our next article on C++ Standardization. Conclusion: If you are a beginner and want to learn C++ as your first programming language,…

Continue Reading
I

Introduction to C++

2 Min Read
0 732
2 Min Read
0 732

C++ Ever wondered why there is ++ in its name?🤔 It is an increment operator in the C language(stay with us in this course to know about this operator). Some features by which C++ outshines other languages Why should you…

Continue Reading
O

Operators in C

11 Min Read
0 877
11 Min Read
0 877

Operators are the symbols, which are used to perform operations on the operands. Operators are always associated with operands. Based on the operations they perform, operators are classified into different types : What is an operand? An operand is data…

Continue Reading
L

Lvalue and Rvalue in C

1 Min Read
0 2706
1 Min Read
0 2706

Lvalue is also known as locator value which always refers to an object. Here the object is named region of storage.  In simple words, an Lvalue is an identifier that has a type and storage class that yields some address…

Continue Reading
C

Constants in C

3 Min Read
0 1208
3 Min Read
0 1208

Constants play a major role during the static initialization of variables. In C, Constants are roughly divided into 3 types: Numeric Constants: Numeric constants are categorized into: Integer constants: Integer constants are the integer values that are used to perform…

Continue Reading
Exit mobile version