What are Structs?
Structs, also known as Structures, are similar to Dictionaries, however, in structs we have some predefined Fields (also called Attributes) instead of Keys. Each Field can be of a different data type.

When you define a Struct, you define a blueprint or format for storing some data - hence a Struct itself cannot hold any data however, using the Struct, you can create objects (also known as instances) of that structure, which can store data in the format provided by the structure. Following is an illustration of a Struct with its Objects:

Using a Struct you can create as many objects as you want. This makes it easy to store related data in an organized format.
It is important to note that the structure itself cannot hold data since it's only a blueprint, however the objects you create using it are capable of storing data.
1. Which statement is correct?
2. Can a struct hold data on its own without creating instances?
Thanks for your feedback!
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 2.04
What are Structs?
Swipe to show menu
Structs, also known as Structures, are similar to Dictionaries, however, in structs we have some predefined Fields (also called Attributes) instead of Keys. Each Field can be of a different data type.

When you define a Struct, you define a blueprint or format for storing some data - hence a Struct itself cannot hold any data however, using the Struct, you can create objects (also known as instances) of that structure, which can store data in the format provided by the structure. Following is an illustration of a Struct with its Objects:

Using a Struct you can create as many objects as you want. This makes it easy to store related data in an organized format.
It is important to note that the structure itself cannot hold data since it's only a blueprint, however the objects you create using it are capable of storing data.
1. Which statement is correct?
2. Can a struct hold data on its own without creating instances?
Thanks for your feedback!