a

auto keyword in C++ 11

1 Min Read
0 1198
1 Min Read
0 1198

The meaning of the auto keyword is changed in C++ 11. Before C++ 11 Prior to C++ 11, it was under the list of storage class specifiers which tells the compiler where to store the variable and also the lifetime…

Continue Reading
V

Volatile in C/C++

2 Min Read
0 1333
2 Min Read
0 1333

volatile is a pre-defined keyword that is used to specify that the value in the variable may change at any time during the program execution. It prevents the compiler from optimizing the instructions. Syntax:  <type-qualifier> <Datatype> <identifier> Example: volatile int…

Continue Reading
W

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

1 Min Read
0 973
1 Min Read
0 973

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 623
2 Min Read
0 623

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