Posts

Showing posts from October, 2014

Diwali Assignment Oct 2014 XII B (CS)

22/Oct/2014 (KV Balasore 2014-15) XII B (CS) 1). What is the difference between call by reference and call by value with respect to memory allocation ? Give a suitable example to illustrate using C++. 2). Define a class Competition in C++ with the following descriptions: Data Members: Event_no integer Description char(30) Score integer qualified char Member functions: - A constructor to assign initial values Event_No number as 101, Description as “State level”, Score is 50 and qualified as ‘N’. - Input(), To take the input for event_no, description and score. - Award(int), To award qualified as ‘Y’, if score is more than the cutoffscore passed as argument to the function else ‘N’. - Show(), To display all the details. 3). Obtain output from following program after including the desired header files. int main( ) { int array [ ]={ 2, 3, 5, 6}; int *arptr = array; int value =*arptr;  cout<<value<<'\t'; value = *...

Diwali Assignment Oct 2014 XII C (IP)

Image
Diwali Assignments - 22/Oct/2014 (KV Balasore 2014-15) XII C (IP) WEB APPLICATION DEVELOPMENT TYPE A: VERY SHORT ANSWER QUESTION 1.  In the URL, http://www.mycorp.com/pr/master.htm, whatis the http component? 2.  In the URL, http://www.mycorp.com/pr/master.htm, whatis the www.mycorp.com component? 3.  In the URL, http://www.mycorp.com/pr/master.htm, whatis the /pr/master.htm component? 4.  What do you mean by Web Browser, and  Web Server? 5.  Which protocol is used to upload/ transfer the file from host to server Internet? 6.  What is WWW? How does it function? 7.  A  web  browser  &  web  server are  an  application  of  client/server  computing  concept.  Comment  on these statements? 8.  What is URL ? What are its components?  Exemplify? Basic HTML Components  TYPE A: VERY SHORT ANSWER QUESTION 1.  What is HTML? Why ...