{"id":42116,"date":"2023-01-31T10:00:48","date_gmt":"2023-01-31T04:30:48","guid":{"rendered":"https:\/\/www.aplustopper.com\/?p=42116"},"modified":"2023-02-01T09:22:43","modified_gmt":"2023-02-01T03:52:43","slug":"plus-two-computer-science-chapter-wise-previous-questions-chapter-1","status":"publish","type":"post","link":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/","title":{"rendered":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers"},"content":{"rendered":"

Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 1 Structures and Pointers<\/h2>\n

Question 1.
\nRepresent a structure named student with types and give the advantages of using structure. [March -2016]<\/span> (3)
\nAnswer:<\/p>\n

struct student\r\n{\r\nint regno;\r\nchar name [25];\r\nstruct\r\n{\r\nshort dd;\r\nshort mm;\r\nshort yy;\r\n} dob;\r\nchar sex;\r\n};<\/pre>\n

the structure is a group of different types of logically related data referenced by a single name.<\/p>\n

Question 2.
\nStructure within a structure is termed as__ [March – 2016]<\/span>
\nAnswer:
\nNested structure<\/p>\n

Question 3.
\nOrphaned memory blocks are undesirable. How can they be avoided [March – 2016]<\/span>
\nOR
\nDiscuss problems created by memory leaks. (2)
\nAnswer:
\nProper use of delete operator is heeded
\n0R
\n1) It causes orphaned memory blocks
\n2) wastage of memory
\n3) insufficient memory
\n4) due to this sometimes system Say be hanged<\/p>\n

Question 4.
\nExplain the use of for loop with an appropriate example. [March – 2016]<\/span> (3)
\nAnswer:
\nFor loop is used to execute a statement more than once.
\nRefer 5 Mark Question 2<\/p>\n

Question 5.
\na) How will you free the allocated memory? [Say – 2016]<\/span> (1)
\nb) Define a structure called time to group the hours, minutes and seconds. Also write a statement that declares two variables current-time and next-time which are of type struct time. (2)
\nAnswer:
\na) delete operator is used to free the allocated memory.<\/p>\n

b)<\/p>\n

struct time\r\n{\r\nint hours;\r\nint minutes;\r\nint seconds;\r\n};\r\ntime current, next;<\/pre>\n

Question 6.
\nA program is implemented to find the area of a circle and area of a rectangle with two functions having same name but with different signature. [Say – 2016]<\/span>
\na) Name the concept (1)
\nb) Explain this concept by writing the above program. (2)
\nAnswer:
\na) Polymorphism
\n\"Plus
\nHere the function names are same but the return type and number of parameters are different hence distinguish the functions.<\/p>\n

Question 7.
\na) Write a C++ program to store and print information (name, roll and marks) of a student using structure. [Say – 2016]<\/span> (3)
\nOR
\nb) Write a program in C++ to input the total marks obtained by a group of students in a class and dis-play them in descending order using pointer. (3)
\nAnswer:
\n\"Plus
\n\"Plus
\nOR
\n\"Plus
\nSay
\nQuestion 8.
\nCompare the aspects of arrays and structures. [March – 2017]<\/span> (3)
\nAnswer:
\nArray-: An array is a collection of elements with same data fypeOr with the same name we can store many elements, the first or second or third etc can be distinguished by using the index(subscript). The first element\u2019s index is 0, the second elements index is 1, and so on.<\/p>\n

To store 100 numbers the array declaration is as follows<\/p>\n

int n[100]; By this we store 100 numbers. The index of the first element is O and the index of last element is 99.<\/p>\n

Structure -: But a Structure is a group of different types of Ipgically related data referenced by a single name.
\nEg. The collection of details of a student that may contain various data with different data types.<\/p>\n

Eg.<\/p>\n

struct student\r\n{\r\nint adm_no;\r\nchar name[40];\r\nfloat weight;\r\n};<\/pre>\n

OR<\/p>\n\n\n\n\n\n\n\n\n
Structure<\/td>\nArray<\/td>\n<\/tr>\n
Differences
\n1. It is a user-defined data type<\/td>\n
Predefined data type<\/td>\n<\/tr>\n
2. It is a collection of different types of logically related data under one name.<\/td>\nCollection of data elements of same data type having a common name.<\/td>\n<\/tr>\n
3. Elements referenced using dot operator(.)<\/td>\nElements reference using its subscripts (position value)<\/td>\n<\/tr>\n
4. When an element of a structure becomes another structure nested structure and complex structures are formed.<\/td>\nWhen an element of another becomes another array, multidimensional arrays are formed.<\/td>\n<\/tr>\n
5. Structure contains array as its elements<\/td>\nArray of structure can be formed.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

Question 9.
\nRun time allocation of memory is triggered by the operator. [March – 2017]<\/span> (1)
\nAnswer:
\nnew<\/p>\n

Question 10.
\nRepresent the names of 12 months as an array of strings. [March – 2017]<\/span>
\nOR
\nA structure can contain another structure. Discuss. (2)
\nAnswer:
\nchar month(1 2)[]={ \u201cJan\u201d,\u201dFeb\u201d,\u201dMar\u201d, \u201cApr\u201d,Say\u201d,\u201cJun\u201d,\u201dJuly\u201d,\u201dAug\u201d, \u201cSep\u201d,Oct\u201d,\u201cNov\u201d,\u201dDec\u201d};
\nOR
\nYes It is possible. This is called nested structure.
\nEg.<\/p>\n

struct date\r\n{\r\nshort day,month,year\u2019\r\n};\r\nstruct student\r\n{\r\ninl reg_no;\r\nchar name[40];\r\ndate dob;\r\n};<\/pre>\n

Plus Two Computer Science Chapter Wise Practice Questions Chapter 1 Structures and Pointers<\/h3>\n

Question 1.
\nDefine a structure to represent the details of telephone subscribers which include name of the subscriber and telephone number. Write a menu driven program to store the details of some subscribers with options for searching the name for a given number, and the number for a given name.
\nAnswer:
\n\"Plus
\n\"Plus
\n\"Plus
\n\"Plus<\/p>\n

Question 2.
\nDefine a structure to represent the details of customers in a bank. The details include account number, name, date of opening the account and balance amount. Write a menu driven program to input the details of a customer and provide options to deposit, withdraw and view the details. During deposit and withdrawal, proper update is to be made in the balance amount. A minimum balance of Rs. 1000\/- is a must in the account.
\nAnswer:
\n\"Plus
\n\"Plus
\n\"Plus<\/p>\n

Question 3.
\nWrite a program to input the TE scores obtained by a group of students in Computer Science and display them in the descending order using pointers.
\nAnswer:
\n\"Plus
\n\"Plus<\/p>\n

Question 4.
\nWrite a program to input a string and check whether it is palindrome or not using character pointer.
\nAnswer:
\n\"Plus<\/p>\n

Question 5.
\nWrite a program to input the names of students in a class using pointers and create a roll list in which the names are listed in alphabetical order with roll number starting from 1.
\nAnswer:
\n\"Plus
\n\"Plus<\/p>\n

Question 6.
\nDefine a structure student with the details register number, name and CE marks of six subjects. Using a structure pointer, input the details of a student and display register number, name and total CE score.
\nAnswer:
\n\"Plus
\n\"Plus
\n\"Plus<\/p>\n

Plus Two Computer Science Assess Question and Answers<\/h3>\n

Question 1.
\nCompare array arid structure in C++.
\nAnswer:<\/p>\n\n\n\n\n
Structure<\/td>\nArray<\/td>\n<\/tr>\n
Differences
\n1. It is a user defined data type
\n2. It is a collection of different types of logically related data under one name.
\n3. Elements referenced using dot operator(.)
\n4.When an element of a structure becomes another structure nested structure and complex structures are formed.
\n5. Structure contains array as its elements<\/td>\n
Predefined data type
\nCollection of data elements of same data type having a common name.
\nElements reference using its subscripts (position value).
\nWhen an element of another becomes another array, multidimensional arrays are formed.
\nArray of structure can be formed.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

Question 2.
\nIdentify the errors in the following structure definition and write the reason for each:<\/p>\n

struct\r\n{\r\nint roll, age;\r\nfloat fee= 1000:\r\n};<\/pre>\n

Answer:
\nErrors
\n1) No name for the structure.
\nThe correct structure is as follows<\/p>\n

struct student\r\n{\r\nshort roll.age:;\r\nfloat fee=1000;\r\n}<\/pre>\n

Question 3.
\nRead the following structure definition and answer the following questions:<\/p>\n

Struct Book\r\n{\r\nint book_no;\r\nchar bk_name [20];\r\nstruct\r\n{\r\nshort dd;\r\nshort mm;\r\nshort yy;\r\n} dI_of_purchase;\r\nfloat price;\r\n};<\/pre>\n

a) Write a C++ statement to declare a variable to refer to the details of a book. What is the memory requirement of this variable? Justify your answer.
\nb) Write a C++ statement to initialize this variable with the details of your Computer Science text book.
\nc) Write C++ statement (s) to display the details of the book.
\nd) The missing of structure tag in the inner structure does not cause any error. State whether this is true or false. Give reason.
\nAnswer:
\na) Book b;
\nThe memory requirements are as follows<\/p>\n\n\n\n\n\n\n\n
variable<\/td>\n\u00a0Memory Size<\/td>\n<\/tr>\n
book_no<\/td>\n\u00a04<\/td>\n<\/tr>\n
bk_name<\/td>\n\u00a020<\/td>\n<\/tr>\n
dt_of_purchase<\/td>\n\u00a02+2+2=6<\/td>\n<\/tr>\n
price<\/td>\n\u00a04<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

A total of 34 Bytes allocated to the variable b.<\/p>\n

b) book b={101 .”Computer Science\u201d,{22,9,2015},127};<\/p>\n

\"Plus
\n\"Plus<\/p>\n

d) This is true. There is no need to mention the structure tag because it is declared inside the structure.<\/p>\n

Question 4.
\n\u201cStructure is a user-defined data type\u201d. Justify this statement with the help of an example.
\nAnswer:
\nYes it is true. A user can give define according to his needs.
\n\"Plus<\/p>\n

Question 5.
\nRead the following statements:
\ni) While defining a structure in C++, tag Say be omitted.
\nii) The data contained in a structure variable can be copied into another variable only if both of them are declared using the same structure tag.
\niii) Elements of a structure is referenced by stmcture_name. element
\niv) A structure can contain another structure.
\nNow, Choose the correct option from the following:
\na) Statements (i) and (ii) are true
\nb) Statements (ii) and (iv) are true
\nc) Statements (i), (ii) and (iv) are true
\nd) Statements (i) and (iii) are true jtyg
\nAnswer:
\nd) Statements (i) and (iii) are true.<\/p>\n

Question 6.
\nRead the following C++ statements:
\nint * p, a=5
\np=&a;
\na) What is the speciality of the variable p?
\nb) What will be the content of p afterthe execution of the second statement?
\nc) Howdo the expressions *p+1 and* (p+1) differ?
\nAnswer:
\na) p is special variable and it is called a pointer.
\nb) p contains the address of the variable a<\/p>\n

\"Plus<\/p>\n

Here p+1 returns (address of the variable a) +4(4 is the size of int data type in Geany C++). *(p+1) returns the content of this next address location.<\/p>\n

Question 7.
\nIdentify the errors in the following C++ code segment and give the reason for each.<\/p>\n

int p, *q a=5;\r\nfloat b2;\r\np=&a;\r\ncout<<p<<*p<<*a;\r\nif (p<q)coLit<<p;\r\ncout<<cp *a;<\/pre>\n

Answer:
\nFollowing are the errors
\n1) Here q is an integer pointer it can not store the address of float variable b.
\n2) Cannot print *a.
\n3) The pointers p and q are different data types so cannot use relational operator.<\/p>\n

The correct code is as given below.
\n\"Plus<\/p>\n

Question 8.
\nWhile writing a program, the concept of dynamic memory allocation is applied. But the program does not contain a statement with delete operator and it creates a problem. Explain the problem.
\nAnswer:
\nIf the memory allocated using new operator is not de allocated using delete, that memory is left unused and not released forfurtherallocation. Such memory blocks are called orphaned memory. On each execution the amount of orphaned block is increased. This situation is called memory leak.<\/p>\n

Question 9.
\nRead the C++ statements given below and answer the following questions:
\nint ar[] = {34,12, 25,56, 38};
\nint *p = ar;
\na) What will be the content of p?
\nb) What is the output of the expression: *p + *(ar+2)?
\nc) The statement ar++; is invalid. Why? How does it differ from p++;?
\nAnswer:
\na) 34
\nb) *p=34 and *(ar+2)=25
\nthen *p+*(ar+2)=34+25=59.
\nc) ar++ is invalid but p++ valid, p is the pointer, pointer arithmetic is allowed.<\/p>\n

Question 10.
\nExplain the working of the following code segment and predict the output:
\nchar *str = \u201cTobacco Kills\u201d;
\nfor (int i=0; str [i] !=’\\0\u2019; i++)
\nif (i>8)
\n* (str +i) = toupper (*(str+i);
\ncout\u00abstr;
\nAnswer:
\nThe output is \u201cTobacco KILLS\u201d. The toupperO function convert the characters into upper case from ninth characteronwards.<\/p>\n

Question 11.
\nObserve the following C++ statements:
\nint ar [ ] = {14, 29, 32,63, 30};
\nOne of following expressions cannot be used to access the element 32. Which is that?
\na) ar [2] b)ar[*ar%3] c)*ar+2 d)*(ar+2)
\nAnswer:
\nc) *ar+2.
\n*ar returns 14 and *ar+2 gives 14+2=16.<\/p>\n

Question 12.
\nExplain the operations performed by the operators new and delete with the help of examples.
\nAnswer:
\nnew operator is used to allocate memory dynamically<\/p>\n

Syntax:
\npointer_variable =newdata_type;
\n\"Plus<\/p>\n

Question 13.
\nWhat is meant by memory leak? What are the reasons for it? How can we avoid such a situation?
\nAnswer:
\nIf the memory allocated using new operator is not de allocated using delete , that memory is left unused and not released for further allocation. Such memory blocks are called orphaned memory. On each execution the amount of orphaned block is increased. This situation is called memory leak. Use delete operator to avoid this.<\/p>\n

Question 14.
\nCompare the following two statements, int a=5;
\nint*a=newint(5);
\nAnswer:
\nint a=5; This means \u2018a\u2019 is an integer variable that is initialized with the integer value 5.
\nint *a=new int(5). Here \u2018a\u2019 is a pointer variable and it allocates memory dynamically and stores a value 5.<\/p>\n

Question 15.
\nRead the structure definition given below and answer the following questions:<\/p>\n

struct sample\r\n{\r\nint num;\r\nchar *str;\r\n} *sptr<\/pre>\n

a) Write C++ statements to dynamically allocate a location for sample type data and store its address in sptr.
\nb) Write C++ statements to input data into the location pointed to by sptr.
\nc) Modify this structure into a self referential structure.
\nAnswer:
\n\"Plus<\/p>\n

Plus Two Computer Science Chapter Wise Previous Questions<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"

Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 1 Structures and Pointers Question 1. Represent a structure named student with types and give the advantages of using structure. [March -2016] (3) Answer: struct student { int regno; char name [25]; struct { short dd; short mm; short yy; } dob; char […]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[42728],"tags":[],"yoast_head":"\nPlus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers - A Plus Topper<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers\" \/>\n<meta property=\"og:description\" content=\"Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 1 Structures and Pointers Question 1. Represent a structure named student with types and give the advantages of using structure. [March -2016] (3) Answer: struct student { int regno; char name [25]; struct { short dd; short mm; short yy; } dob; char […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/\" \/>\n<meta property=\"og:site_name\" content=\"A Plus Topper\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aplustopper\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-31T04:30:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-01T03:52:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasanna\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.aplustopper.com\/#organization\",\"name\":\"Aplus Topper\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/aplustopper\/\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"contentUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"width\":1585,\"height\":375,\"caption\":\"Aplus Topper\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.aplustopper.com\/#website\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"name\":\"A Plus Topper\",\"description\":\"Improve your Grades\",\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.aplustopper.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png\",\"contentUrl\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#webpage\",\"url\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/\",\"name\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers - A Plus Topper\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#primaryimage\"},\"datePublished\":\"2023-01-31T04:30:48+00:00\",\"dateModified\":\"2023-02-01T03:52:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.aplustopper.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\"},\"headline\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers\",\"datePublished\":\"2023-01-31T04:30:48+00:00\",\"dateModified\":\"2023-02-01T03:52:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#webpage\"},\"wordCount\":1889,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png\",\"articleSection\":[\"HSSLiVE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\",\"name\":\"Prasanna\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"caption\":\"Prasanna\"},\"url\":\"https:\/\/www.aplustopper.com\/author\/prasanna\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers - A Plus Topper","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/","og_locale":"en_US","og_type":"article","og_title":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers","og_description":"Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 1 Structures and Pointers Question 1. Represent a structure named student with types and give the advantages of using structure. [March -2016] (3) Answer: struct student { int regno; char name [25]; struct { short dd; short mm; short yy; } dob; char […]","og_url":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/","og_site_name":"A Plus Topper","article_publisher":"https:\/\/www.facebook.com\/aplustopper\/","article_published_time":"2023-01-31T04:30:48+00:00","article_modified_time":"2023-02-01T03:52:43+00:00","og_image":[{"url":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png"}],"twitter_card":"summary","twitter_misc":{"Written by":"Prasanna","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.aplustopper.com\/#organization","name":"Aplus Topper","url":"https:\/\/www.aplustopper.com\/","sameAs":["https:\/\/www.facebook.com\/aplustopper\/"],"logo":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#logo","inLanguage":"en-US","url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","contentUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","width":1585,"height":375,"caption":"Aplus Topper"},"image":{"@id":"https:\/\/www.aplustopper.com\/#logo"}},{"@type":"WebSite","@id":"https:\/\/www.aplustopper.com\/#website","url":"https:\/\/www.aplustopper.com\/","name":"A Plus Topper","description":"Improve your Grades","publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.aplustopper.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#primaryimage","inLanguage":"en-US","url":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png","contentUrl":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png"},{"@type":"WebPage","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#webpage","url":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/","name":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers - A Plus Topper","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#primaryimage"},"datePublished":"2023-01-31T04:30:48+00:00","dateModified":"2023-02-01T03:52:43+00:00","breadcrumb":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aplustopper.com\/"},{"@type":"ListItem","position":2,"name":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers"}]},{"@type":"Article","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#article","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#webpage"},"author":{"@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794"},"headline":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 1 Structures and Pointers","datePublished":"2023-01-31T04:30:48+00:00","dateModified":"2023-02-01T03:52:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#webpage"},"wordCount":1889,"commentCount":0,"publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"image":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-1-Structures-and-Pointers-1.png","articleSection":["HSSLiVE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-1\/#respond"]}]},{"@type":"Person","@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794","name":"Prasanna","image":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","caption":"Prasanna"},"url":"https:\/\/www.aplustopper.com\/author\/prasanna\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42116"}],"collection":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/comments?post=42116"}],"version-history":[{"count":1,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42116\/revisions"}],"predecessor-version":[{"id":155373,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42116\/revisions\/155373"}],"wp:attachment":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/media?parent=42116"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/categories?post=42116"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/tags?post=42116"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}