Moumita has Published 162 Articles

The 802.16 MAC Sublayer Frame Structure

Moumita

Moumita

Updated on 27-Apr-2020 07:15:44

2K+ Views

The IEEE 802.16 set of standards lays down the specifications for wireless broadband technology. It has been commercialized as Worldwide Interoperability for Microwave Access (WiMAX) that is responsible for the delivery of last-mile wireless broadband access.The IEEE 802.16 MAC sublayer is the most important sublayer and concerned with channel management. ... Read More

What is piconet?

Moumita

Moumita

Updated on 27-Apr-2020 07:13:52

5K+ Views

A piconet is a small Bluetooth network that connects mobile devices wirelessly over a short range of 10m radius, using ultra-high frequency (UHF) radio waves, to form a personal area network (PAN).A piconet can be formed by at most 8 stations, one of which is the master node and the ... Read More

What is scatternet?

Moumita

Moumita

Updated on 27-Apr-2020 07:12:03

3K+ Views

A scatternet is a type of Bluetooth network that is formed by the interconnection between two or more individual Bluetooth networks, called piconets. The devices in the scattered should be Bluetooth enabled so that they can communicate wirelessly over a short range of within 10m radius using ultra-high frequency (UHF) ... Read More

Case sensitive string comparison in Java.

Moumita

Moumita

Updated on 26-Feb-2020 06:45:45

3K+ Views

You can compare two strings using either equals() method or compareTo() method.Where, The equals() method compares this string to the specified object.The compareTo() method compares two strings lexicographically. The comparison is based on the Unicode value of each character in the strings.These two methods compare the given strings with respective ... Read More

How to create String object in Java?

Moumita

Moumita

Updated on 26-Feb-2020 05:55:48

1K+ Views

You can create a String by -Assigning a string value wrapped in " " to a String type variable.String message = "Hello Welcome to Tutorialspoint";Creating an object of the String class using the new keyword by passing the string value as a parameter of its constructor.String message = new String ... Read More

Capturing groups and back references in Java Regex

Moumita

Moumita

Updated on 25-Feb-2020 07:11:20

570 Views

Capturing groups are a way to treat multiple characters as a single unit. They are created by placing the characters to be grouped inside a set of parentheses. For example, the regular expression (dog) creates a single group containing the letters "d", "o", and "g".Capturing groups are numbered by counting ... Read More

Concatenate 2 strings in ABAP without using CONCATENATE function

Moumita

Moumita

Updated on 14-Feb-2020 05:32:25

2K+ Views

In ABAP you can use && sign to concatenate variables as belowDatahello TYPE string, world TYPE string, helloworld TYPE string. hello = 'hello'. world = 'world'. helloworld = hello && world.If you want to concatenate strings directly, you can usehelloworld = 'hello' && 'world'.If you want to keep space in ... Read More

Putting semicolons after while and if statements in C++

Moumita

Moumita

Updated on 11-Feb-2020 06:55:05

2K+ Views

When you have a statement like −while (expression);the while loop runs no matter if the expression is true or not. However, if you put −if (expression);the statement runs no matter if the expression is true or not. This is because the syntax for if and while is −if () ... Read More

What is object-oriented programming (OOP)?

Moumita

Moumita

Updated on 10-Feb-2020 11:00:45

11K+ Views

Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which may contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods. For example, a person is an object which has certain properties such as ... Read More

Frame Structure for OFDMA with Time Division Duplexing

Moumita

Moumita

Updated on 04-Feb-2020 10:23:44

438 Views

Orthogonal frequency division multiple access (OFDMA) is a multi-user version of digital data modulation scheme OFDM (orthogonal frequency division multiplexing). In OFDM, a single stream of data is divided into several separate sub-streams for transmission via multiple channels. OFDM uses the principle of frequency division multiplexing (FDM), where the available ... Read More

Advertisements