Skip to main content

Diwali Assignment Oct 2014 XII C (IP)


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 it is used?
2.  What is Tag ? Differentiate between Container and Empty tag?
3.  What is an Attribute?
4.  What is the basic Structure of HTML file?
5.  What is the difference between-(a)<Font> and <Base Font> tag
(b) <BR> and <P>
6.  Explain the following tag with their commonly used attributes-(a) <Html>   (b) <Title>  (c) <Body>  (d) <Font>  (e) <HR>
(f) <P>    (g) <img>  (h) <h1>  (i)<!..>    (j) <A>


ADVANCED HTML (LIST, TABLES)
TYPE A: VERY SHORT ANSWER QUESTION
1.  What types of list are supported by HTML?
2.  Which three tags let you create the definition list?
3.  Which three tags let you create the (i) un numbered lists? (ii) numbered lists?
4.  What is a table? Which tag is used to create tables in HTML?
5.  Which attributes are used to give border to a table?
6.  Which attribute lets you control the display of select border sides of a table?
7.  Which attributes is used to control the inside table border?
8.  How is spacing in cells of table controlled?
9.  What is the role of ALIGN attribute of <TABLE> tag?
10. How can you specify following in table?
(a)  background color  (b) Table height.      (c) Table width.

11. What tag is used to specify
(i)  Table data  (ii) Table header  (iii) Table row?
12. Name the attributes used for following?
(i)  Setting the cell width.        (iii) Setting cells background colour.
(ii )  Changing the cell span.      (iv) Aligning cell contents vertically.
13. What for are <TH> and <TR> tags used?
14.  How will you nest an unorder list inside an ordered list?
15.  How would you indent a single word and put a square bullet in front of it?
16.  Write code to produce following HTML tables?

(i)  
 (ii)
 (iii)







HAPPI and SAFE DIWALI To You All.....................  :-) :-) 


Unit Test will be on 30th Oct 2014.

Syllabus for unit Test - 



Web Application Development : - Explanation of Url, Web Server, Client Server with examples.

HTML Based web pages :-    Tags with explanation and examples. HTML, HEAD, TITLE, BODY, H1.....H6, P, BR, HR, FONT, TABLE, LIST(UL OL)





Popular posts from this blog

Project Work for Class XII Informatics Practices (065) - CBSE 2020-2021

  Marks  allotted : 05 Marks A. PROJECT GUIDELINES The aim of the class project is to create tangible and useful IT application. The learner may identify a real-world problem by exploring the environment. e.g. Students can visit shops/business places, communities or other organizations in their localities and enquire about functioning of the organization, and how data are generated, stored, and managed. The learner can take data stored in csv or database file and analyze using Python libraries and generate appropriate charts to visualize. If an organization is maintaining data offline, then the learner should create a database using MySQL and store the data in tables. Data can be imported in Pandas for analysis and visualization. Learners can use Python libraries of their choice to develop software for their school or any other social good. Learners should avoid plagiarism and violation of copyright issues while working on projects. Any resources (data, image etc.) used in t...

Assignments - XII Computer Science

POINTERS ASSIGNMENT Assignment Date: 09/09/15 Submission Date: 14/09/15 Q1. What will be the output of the following program: int main() { int x [ ] = { 50, 40, 30, 20, 10}: int *p, *t; p = x; t = x + 1; cout << *p << “,” << *t++; return 0; } Q2. What will be the output of the program( Assume all necessary header files are included) void print (char * p ) { p = "Comp"; cout<<"value is "<<p<<endl; } int main( ) { char * x = "Class XII"; print(x); cout<<"new value is "<<x<<endl; return 0; } Q3. Identify errors on the following code segment, and underline the error. float c[ ] ={ 1.2,2.2,3.2,56.2}; float *k,*g; k=c; g=k+4; k=k*2; g=g/2; cout<<”*k=”<<*k<<”*g=”<<*g; Q4. Write the output of the following program. void print (char * p ) { p = "Comp"; cout<<"valu...