Skip to main content

ads1

Class 12 Chapter :- 3 Designing simple website using KompoZer

  Chapter :- 3  Designing simple website using KompoZer


A website plays a very important role in a business now-a-days.


It helps in presenting the business to the world. It helps in promoting the business, selling the products and attracting a large number of customers.


A website is a collection of interlinked web pages for a specific purpose. A website that is interactive, user friendly and providing accurate and useful information.


Planning for the website 


Developing a good website is a project similar to any other project and requires detailed planning.In other words we can say that, the desired goals for developing the website can be achieved.


  • Purpose 
  • Audience 
  • Content
  • Medium 



After creating the website we need to upload it on the Internet.Publishing a website means transferring the site, i.e. the pages, images and stylesheets, to a web server from which they can be accessed by the users.


This process is called 'Uploading'. We can upload the website if we have an account on the web server. 


The Internet service providers (ISP) offer limited free space on the web server.We can also buy space from professional hosting providers.


We also discussed about the different free open source web development IDE available on Internet like Aptana studio, Blue Griffon and Amaya. 


Choose the most appropriate option from those given below :- 


(1)Which of the following helps in promoting the business, selling the products and attracting 

a large number of customers ? 

(a)Website 

(b)Webpage 

(c)Form 

(d)css 


(2)Which of the following is not an important point to be considered for developing a good 

website as part of planning process ? 

(a)Purpose 

(b)Audience 

(c)Content 

(d)Input 


(3)Which of the following information should a website contain ? 

(a)Complete, Relevant 

(b)Complete, Irrelevant 

(c)Incomplete, Irrelevant 

(d)Incomplete, Relevant 


(4)Which of the following content provides an overview of the site, organization, products 

and services, and other items? 

(a)Detailed 

(b)Long 

(c)General 

(d)Short 


(5)Which of the following is a collection of interlinked web pages ? 

(a)Webpage 

(b)Forn 

(C)Kompozer 

(d)Website 


(6) Which of the following is the first page that opens when the user enters the URL address 

in the address bar of the browser? 

(a)Home page 

(b)Last page 

(c)Web page 

(d)First page 


(7)Which of the following filename is the home page of the website saved as ? 

(a)first.htmal 

(b)index.html 

(c)home.html 

(d)one.htm] 


 

(8)Which of the following is a variable that is stored on the user's computer ? 

(a)Integer 

(b)HTML 

(c)Cookie 

(d)Java 


(9)Which of the following stands for FTP 2 

(a)File Truncate Protocol 

(b)File Transfer Process 

(c)Fine Tune Protocol 

(d)File Transfer Protocol 


Link to Download :- Chapter 3 Designing simple website using KompoZer

Link to Download :- Chapter 3 Multiple Choice question 








ads2

Popular posts from this blog

11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following:

    11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following: Basic Salary <= 10000 : HRA = 20%, DA = 80% Basic Salary <= 20000 : HRA = 25%, DA = 90% Basic Salary > 20000 : HRA = 30%, DA = 95% Static Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     if(basic <=10000)     {         da = basic * 0.8;         hra = basic *0.2;     }              else if(basic <=20000)     {         da = basic * 0.9;         hra = basic *0.25;     }     else     {         da = basic * 0.95;         hra = basic * 0.3;     }     gross = basic + da + hra;     System.out.println("The Gross Salary is :-"+gross);     } } Output :-  Dynamic Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     Scanner in = new Scanner(System.in);     System.out.println("Enter the Basic Salary

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise or class wise.

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise  or class wise. Solution :-   # x-axis is shows the subject and y -axis # shows the markers in each subject # import pandas and matplotlib  import pandas as pd  import matplotlib.pyplot as plt # Simple Line Chart with setting of Label of X and Y axis, # title for chart line and color of line  subject = ['Physic','Chemistry','Mathematics', 'Biology','Computer'] marks =[80,75,70,78,82] # To draw line in red colour plt.plot(subject,marks,'r',marker ='*')     # To Write Title of the Line Chart plt.title('Marks Scored') # To Put Label At Y Axis plt.xlabel('SUBJECT')           # To Put Label At X Axis plt.ylabel('MARKS')             plt.show() Output :- 

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category.

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category. import pandas as pd  # initialize list of lists data = [['CAR','Maruti',1000000],['AC','Hitachi',55000],['AIRCOLLER','Bajaj',12000], ['WASHING MACHINE','LG',15000],['CAR','Ford',7000000],['AC','SAMSUNG',45000],['AIRCOLLER','Symphony',20000],['WASHING MACHINE','Wirlpool',25000]] Col=['itemcat','itemname','expenditure'] # Create the pandas DataFrame qrtsales = pd.DataFrame(data,columns=Col) # print dataframe.  print (qrtsales) qs=qrtsales.groupby('itemcat')  print('Result after Filtering Dataframe')  print(qs['itemcat','expenditure'].sum()) Output :-