Programming

286   Articles
286
W

What is –> operator in C/C++ ?

1 Min Read
0 975
1 Min Read
0 975

In C++, we can combine two same/different operators in a single expression. ‘–>’ is not a single operator. It is a combination of two operators. i.e. Post Decrement operator & Relational operator (Greater than). For example, consider the statement x–>1….

Continue Reading
C

C++ constructors

2 Min Read
0 625
2 Min Read
0 625

Constructors are the special type of methods that get called when we create an instance for a class i.e. an object. Constructors are used to initialize the member variables of a class with their default values. Without initializing, we cannot…

Continue Reading
5

5G-NR UE Identities (5G Identifiers)

1 Min Read
0 1675
1 Min Read
0 1675

IMSI:- IMSI stands for International Mobile Subscriber Identity. Structure of IMSI: The subscriber is identified within the home PLMN using the Mobile Subscriber Identification Number (MSIN). IMEI:- IMEI stands for International Mobile Equipment Identity. Structure of IMEI: TAC (Type Allocation…

Continue Reading
A

Analogue vs digital beamforming

1 Min Read
0 1125
1 Min Read
0 1125

The creation of a beam using constructive interference between the signals transmitted by each antenna element is known as beamforming. Beamforming can be done in two ways: Analogue beamforming In analogue beamforming multiple antenna elements are connected to a single…

Continue Reading
B

Beamforming in 5G-NR

2 Min Read
0 1048
2 Min Read
0 1048

The creation of a beam using the constructive interference between the signals transmitted by each antenna element is known as beamforming. Using the MIMO technique we can construct a phased array antenna with which based on the antenna spacing and…

Continue Reading
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
Exit mobile version