Online Short Questions Preparations

Online Short Questions For Chapter 4 "10th Class Computer Science English Medium Chapter 4 Preparation "

Try The Short Questions For 10th Class Computer Science English Medium Chapter 4 Preparation

  • Total Questions10

  • Available Sets2

Computer Science - 10th Class Computer Science English Medium Chapter 4 Preparation

Question # 1

What is data structure? And why we need data strcuture.

  • Ans 1: Data structure is a container to store collection of data items in a specific layout. High level programming languages provide data structures in order to store and organize data. Different data structures are available in C programming langauge. Array is the one onf the most common data structure in C language.
  • Ans 2: Need: We need data strcutre to store and process large amount of data.
    Example: The marks of 100 students we does not need to declare 100 variables we should use array.
Submit

Prepare Complete Set Wise Questions For Chapter 4 "10th Class Computer Science English Medium Chapter 4 Preparation "

10th Class Computer Science English Medium Chapter 4 Preparation - Set 1

Question # 1

What is data structure? And why we need data strcuture.

  • Ans 1: Data structure is a container to store collection of data items in a specific layout. High level programming languages provide data structures in order to store and organize data. Different data structures are available in C programming langauge. Array is the one onf the most common data structure in C language.
  • Ans 2: Need: We need data strcutre to store and process large amount of data.
    Example: The marks of 100 students we does not need to declare 100 variables we should use array.
Submit

10th Class Computer Science English Medium Chapter 4 Preparation - Set 2

Question # 1

Define Array initialization.

  • Ans 1: Assigning values to an array for the first time, is called array initialization. An array can be initialized at the time of its declaration, or later, Array initialization at the time of declaration can be done in the following manner.
    Data _ type array _ name { N } = {Value} , value 2, value, 3........., value N }
Submit

Is this page helpful?