Sponsor Area

NCERT Solutions for Class 12 Help.html Computer Science With C++ Chapter 8 Data Structure

Data Structure Here is the CBSE Help.html Chapter 8 for Class 12 students. Summary and detailed explanation of the lesson, including the definitions of difficult words. All of the exercises and questions and answers from the lesson's back end have been completed. NCERT Solutions for Class 12 Help.html Data Structure Chapter 8 NCERT Solutions for Class 12 Help.html Data Structure Chapter 8 The following is a summary in Hindi and English for the academic year 2025-26. You can save these solutions to your computer or use the Class 12 Help.html.

Question 1
CBSEENCO12011525

T[25][30] is a two dimensional array, which is stored in the memory along the row with each of its element occupying 2 bytes, find the address of the element T[10][15], if the element T[5][10] is stored at the memory location 25000.

Solution

LOC(T[10][15]) = LOC(T[5][10]) + 2(30*(10-5) + (15-10))
                       = 25000 + 2(150 + 5)
                       = 25000 + 2(155)
                       = 25000 + 310
                       = 25310

Sponsor Area