Friday 27 July 2018

M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN-July-12 Solved

Multiple Choice


1.1 : A
1.2 : B
1.3 : D
1.4 : A
1.5 : A
1.6 : D
1.7 : B
1.8 : C

Wednesday 25 July 2018

M2-R4 INTERNET TECHNOLOGY AND WEB DESIGN-Jan-13 Solved

Multiple Choice


1.1 : C
1.2 : C
1.3 : B
1.4 : A
1.5 : B
1.6 : D
1.7 : D
1.8 : C
1.9 : B
1.10 : D

Sunday 22 July 2018

Input type pattern





Form tag is one of the key tags of HTML through which users data are sent on server. While making a form there are lots of validation implemented to allow valid data only. As a developer we all know about importance of validation and we do lots of JS code for validation. Working with JS is not an easy task for beginner.

HTML 5 introduce built in validation using regular expression using pattern property. If you are using patter regular expression then this will save your time and it is supported by all model browsers. So using pattern, you do not to worry about browser compatibility.

Following code will help you to understand basics of pattern. Ones you will implement basics then after using regular expression you will be able to implement complicated validation rule.

Name :

Six Digit Pin :

Email :


Monday 16 July 2018

INTERNET TECHNOLOGY AND WEB DESIGN July, 2013 Solved

Multiple Choice


1.1 : C
1.2 : B
1.3 : B
1.4 : B
1.5 : C

Thursday 12 July 2018

M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN January, 2014 Solution

Multiple Choice


1.1 : D
1.2 : C
1.3 : C
1.4 : A
1.5 : A
1.6 : C

Tuesday 3 July 2018

Solved July, 2014 M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

Multiple Choice


1.1 : B
1.2 : C
1.3 : B
1.4 : A
1.5 : C
1.6 : B

Tuesday 26 June 2018

Solved July, 2015 M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

Multiple Choice


1.1 : C
1.2 : A
1.3 : B
1.4 : D
1.5 : C
1.6 : A
1.7 : A
1.8 : C

Solved January, 2015 M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

Multiple Choice

1.1 : C
1.2 : A
Explanation : Shortest Seek Time First
1.3 : D
Explanation : 
Seek time: Say you're reading some data from the (0,4). You receive instructions to read from track (2,5). The time it takes for you to move from track 0 to track 2 is seek time.

Sunday 24 June 2018

M1-R4: IT TOOLS AND BUSINESS SYSTEMS July 2011 Solution

Multiple Choice


1.1 : A
1.2 : B
1.3 : B
1.4 : A
1.5 : C
1.6 : D
1.7 : D

Friday 22 June 2018

Paper IT Tools and Business Systems January 2011 Solution

Multiple Choice

1.1 : D
1.2 : D
1.3 : B
1.4 : A
1.5 : D
1.6 : B
1.7 : B

Wednesday 20 June 2018

IT Tools and Business Systems -July-2010 Solution

Multiple Choice


1.1 : B
1.2 : B
1.3 : B
1.4 : D
1.5 : B
1.6 : A
1.7 : B
1.8 : A
1.9 : C

Sunday 17 June 2018

IT TOOLS AND BUSINESS SYSTEMS Jan-12 Solved

Multiple Choice


1.1 : B
1.2 : B
1.3 : C
1.4 : D
1.5 : C
1.6 : A
1.7 : B

July, 2012 M1-R4: IT TOOLS AND BUSINESS SYSTEMS Solution

Multiple Choice


1.1 : D
1.2 : D
1.3 : D
1.4 : D
1.5 : D

Monday 11 June 2018

Paper M1-R4: IT TOOLS AND BUSINESS SYSTEMS-jan-13 Solution

Multiple Choice


1.1 : A
1.2 : C
1.3 : B
1.4 : D
1.5 : A
1.6 : B
1.7 : D
1.8 : A
1.9 : D
1.10 : C

Saturday 9 June 2018

July, 2013 M1-R4: IT TOOLS AND BUSINESS SYSTEMS Solution

Multiple Choice

1.1 : C
1.2 : D
1.3 : B
1.4 : C
1.5 : A
1.6 : D
1.7 : C
1.8 : B
1.9 : B
1.10 : C

Wednesday 6 June 2018

CSS Selector



This page will help you to learn how you can user CSS on various types of HTML tag. If you have knowledge of CSS selector then you can make big changes of fo

Sunday 3 June 2018

July-2014 M1-R4: IT TOOLS AND BUSINESS SYSTEMS Answer

Multiple Choice


1.1 : C
1.2 : B
1.3 :  D
1.4 : B
1.5 : D
1.6 : D

Wednesday 30 May 2018

Image zoom inside of div






HTML

<div class="con">
<img src="1.jpg" class="test"/>
</div>

CSS

.test
{
       height:200px;
       width:200px;

Monday 28 May 2018

Solution : July, 2015 M1-R4: IT TOOLS AND BUSINESS SYSTEMS

Multiple Choice :


1. D
2.C
3.D
4.:A
5:C
6: B

Saturday 26 May 2018

import multiple CSS using single link

CSS file

File A1

.r1
{
       color:red;
}
File A2

.r2
{
       color:green;
}

File A3

.r2