---
title: "What are enumerations?"  
description: "What are enumerations?"  
author: "Prakash nidhi Verma"  
published: 2018-07-09  
updated: 2020-09-15  
canonical: https://www.mindstick.com/interview/23460/what-are-enumerations  
category: "education"  
tags: ["network"]  
reading_time: 1 minute  

---

# What are enumerations?

A user defind data type which is consist so many integral constant and used a keyword enum is called Enumeration.

Syntax :

```
enum flag{ const1, const2, ..., constN }; 
```

in network services user name and group info activity always depend on network enumeration . When a servers are connected to a specific network and operating system runs in its network mapping, its working only on retrieves information.

## Answers

### Answer by Prakash nidhi Verma

A user defind data type which is consist so many integral constant and used a keyword enum is called Enumeration.

Syntax :

```
enum flag{ const1, const2, ..., constN }; 
```

in network services user name and group info activity always depend on network enumeration . When a servers are connected to a specific network and operating system runs in its network mapping, its working only on retrieves information.


---

Original Source: https://www.mindstick.com/interview/23460/what-are-enumerations

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
