Sumita Arora Class 11 Solutions

10.09.2019
Sumita Arora Class 11 Solutions 7,4/10 1417 reviews
Sumita

You can get solutions for class 11th Computer Science by Sumita Arora in link given below: COMPUTER SCIENCE C++ CLASS 11 BY SUMITA ARORA - World Full of Questions 953 Views View 1 Upvoter. Sumita Arora Class 12 Solutions. Ps1 iso torrent. Documents Similar To class 11 sumita arora. Computer Science Chapter 5 Constructors and Destructors From Sumita Arora.

Informatics Practices By Sumita Arora


TYPE B: Short Answer Questions
Que.9.Write declaration for a class that holds properties of a branch. The class holds information like branch-number, area, number of employees, head and the operations associated like branch report printing, branch data modification, pending works reporting, forecasting reporting.
class Branch
{
int branch_no;
char area[20];
int no_of_emp;
char head[20];
print( );
modify( );
pending( );
forecast( );
}
Que.10. Write declaration for a structure that holds same information as that of the class mentioned in question 9.
struct Branch
{
int branch_no;
char area[20];
int no_of_emp;
char head[20];
void print( );
void modify( );
void pending( );
void forecast( );
}
Que.11. Write declaration for a structure that holds information of a student like roll no, name, class, marks and grade.
struct Student
{
int roll_no;
char name[15];
int class;
float marks;
char grade;
}
Que.12.Write declaration for a class that holds the information of Q.11. For associated operations, make suitable assumptions.
class Student
{
int roll_no;
char name[15];
int class;
float marks;
char grade;
void enter_details( );
void display_details( );
}
Updating more..
Comments are closed.