Download the latest CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes in PDF format. These Class 11 Computer Science revision notes are carefully designed by expert teachers to align with the 2025-26 syllabus. These notes are great daily learning and last minute exam preparation and they simplify complex topics and highlight important definitions for Class 11 students.
Chapter-wise Revision Notes for Class 11 Computer Science Structured Data Types Arrays And Structures
To secure a higher rank, students should use these Class 11 Computer Science Structured Data Types Arrays And Structures notes for quick learning of important concepts. These exam-oriented summaries focus on difficult topics and high-weightage sections helpful in school tests and final examinations.
Structured Data Types Arrays And Structures Revision Notes for Class 11 Computer Science
Structured Data Types : Arrays and Structures.
Objectives :
• to understand the meaning of structure datatypes and its availability in C++.
• To appreciate the use and importance of Arrays in C++
• to differentiate between the use and implementation of different types of Arrays
• To use structures as User Defined data type to write programs.
• To understand and use typedef
Structured Data types :
Students till now whatever data type we have used are just primitive data types like int , char , float , etc. All these datatypes are defined within the C++ compiler and that is why they are also called as primitive. We can define a length using int , a weight using float , a name using characters etc. but suppose I tell you ―please define a fruit for me in program‖ ,then your mind starts wondering, as you can't define a fruit just with any one datatype as you did with length , weight etc. A Fruit itself is a composite entity having following attributes :
color : can be described with a name i.e. char [ ]
taste : can be described with a name i.e. char[ ]
season : can be described with int i.e. 1 for summer , 2 for winter …
price : can be described as float ans so on...
This means that to describe a fruit we need to have a collection of data-types bundled togeather so that all the attributes of the fruit can be captured. This is true for any real world thing around you say student , mobile , plant etc. So when we bundle many primitive data types together to define a real world thing then it is known as derived data type or structured data type or User defined data types.
In this chapter we would look onto two important structured data types , one is Array and the other one is Structure.
Sometimes we need to have variables in very large quantities , that too of same data type i.e. suppose we want 200 integer variables. In this situation will you declare 200 individual variables ? Absolutely not. This is because it will :
a) wastage of time as well time taking task
b) we won't be able to manage these 200 variables in our program , it will be difficult to remember the names of variable every now and then during programming. So there exist special structured data type in C++ to tackle this situation. C++ allows a programmer to bundle together all these same type of 200 variable under a same tag name called as Arrays.
So we are observing that structuring data type means bundling primitive data type in some or other way so that it solves some special programming situations.
4.1 Arrays
An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.
That means that, for example, we can store 5 values of type int in an array without having to declare 5 different variables, each one with a different identifier. Instead of that, using an array we can store 5 different values of the same type, int for example, with a unique identifier.
For example, an array to contain 5 integer values of type int called myArr could be represented like this:
where each blank panel represents an element of the array, that in this case are integer values of type int. These elements are numbered from 0 to 4 since in arrays the first index is always 0, independently of its ength.
Like a regular variable, an array must be declared before it is used. A typical declaration for an array in C++ is:
Syntax : <datatype> array_name [elements];
where datatype is a valid type (like int, float...), name is a valid identifier and the elements field (which is always enclosed in square brackets [ ]), specifies how many of these elements the array has to contain.
Therefore, in order to declare an array called myArr as the one shown in the above diagram it is as simple as:
int myArr [5];
NOTE: The elements field within brackets [ ] which represents the number of elements the array is going to hold, must be a constant value, since arrays are blocks of non-dynamic memory whose size must be determined before execution. In order to create arrays with a variable length dynamic memory is needed, which is explained later in these tutorials.
Initializing arrays.
When declaring a regular array of local scope (within a function, for example), if we do not specify otherwise, its elements will not be initialized to any value by default, so their content will be undetermined until we store some value in them. The elements of global and static arrays, on the other hand, are automatically initialized with their default values, which for all fundamental types this means they are filled with zeros.
In both cases, local and global, when we declare an array, we have the possibility to assign initial values to each one of its elements by enclosing the values in braces { }. For example:
int myArr [5] = { 16, 2, 77, 40, 12071 };
This declaration would have created an array like this:
myArr[0] = a;
myArr[a] = 75;
b = myArr [a+2];
myArr[myArr[a]] = myArr[2] + 5;
#include <iostream>
using namespace std;
int myArr [] = {16, 2, 77, 40, 12071};
int n, result=0;
int main ()
{
for ( n=0 ; n<5 ; n++ )
{
result += myArr[n];
}
cout << result;
return 0;
}
Arrays can also be initialized during runtime. The following program shows how to input values into arrays during rum time :
#include<iostream.h>
main()
{
int my_arr[5]; // name of array.
cout<<‖\nEnter values at: ―;
for(int i = 0 ; i < 5; i++)
{
cout<<‖\n‖<<i+1<<‖ :‖;
cin>>my_arr[ i ]; //stores value at ith index.
}
#include<iostream.h>
main()
{
int my_arr[5]; // name of array
for(int i = 0 ; i < 10; i++)
{
cout<<‖\n‖<<i+1<<‖ :‖;
cin>>my_arr[ i ]; //stores value at ith index.
}
for(int i = 0 ; i < 10; i++)
{
cout<<‖\Number at ‖<<i+1<<‖ :‖<<my_arr[ i ]; //show value at ith index.
}
}
Please click the link below to download pdf file for CBSE Class XI Computer Science Structured Data Types-Arrays and Structures Concepts.
| CBSE Class 11 Computer Science Flow of Control Notes |
| CBSE Class 11 Computer Science Functions Notes Set A |
| CBSE Class 11 Computer Science Functions Notes Set B |
| CBSE Class 11 Computer Science Computer Fundamentals Notes |
| CBSE Class 11 Computer Science Online Access And Computer Security Notes |
| CBSE Class 11 Computer Science Computing and Binary Operation Notes |
| CBSE Class 11 Computer Science Functions In C++ Notes |
| CBSE Class 11 Computer Science Introduction To C++ Notes |
| CBSE Class 11 Computer Science Introduction To Python Notes |
| CBSE Class 11 Computer Science List in Python Notes |
| CBSE Class 11 Computer Science Programming In C++ Notes |
| CBSE Class 11 Computer Science Programming Methodology Notes |
| CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes |
| CBSE Class 11 Computer Science Using C++ Constructs Notes |
Important Practice Resources for Class 11 Computer Science
CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes
Students can use these Revision Notes for Structured Data Types Arrays And Structures to quickly understand all the main concepts. This study material has been prepared as per the latest CBSE syllabus for Class 11. Our teachers always suggest that Class 11 students read these notes regularly as they are focused on the most important topics that usually appear in school tests and final exams.
NCERT Based Structured Data Types Arrays And Structures Summary
Our expert team has used the official NCERT book for Class 11 Computer Science to design these notes. These are the notes that definitely you for your current academic year. After reading the chapter summary, you should also refer to our NCERT solutions for Class 11. Always compare your understanding with our teacher prepared answers as they will help you build a very strong base in Computer Science.
Structured Data Types Arrays And Structures Complete Revision and Practice
To prepare very well for y our exams, students should also solve the MCQ questions and practice worksheets provided on this page. These extra solved questions will help you to check if you have understood all the concepts of Structured Data Types Arrays And Structures. All study material on studiestoday.com is free and updated according to the latest Computer Science exam patterns. Using these revision notes daily will help you feel more confident and get better marks in your exams.
You can download the teacher prepared revision notes for CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes from StudiesToday.com. These notes are designed as per 2025-26 academic session to help Class 11 students get the best study material for Computer Science.
Yes, our CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes include 50% competency-based questions with focus on core logic, keyword definitions, and the practical application of Computer Science principles which is important for getting more marks in 2026 CBSE exams.
Yes, our CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes provide a detailed, topic wise breakdown of the chapter. Fundamental definitions, complex numerical formulas and all topics of CBSE syllabus in Class 11 is covered.
These notes for Computer Science are organized into bullet points and easy-to-read charts. By using CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes, Class 11 students fast revise formulas, key definitions before the exams.
No, all study resources on StudiesToday, including CBSE Class 11 Computer Science Structured Data Types Arrays And Structures Notes, are available for immediate free download. Class 11 Computer Science study material is available in PDF and can be downloaded on mobile.