Create a table in HTML consisting of 2 rows and 3 columns

<html>

 <head>

<title> text </title>

 </head>

 <body>

<table border="1">

<tr>

<th>Cell 1</th>

<th>Cell 2</th>

<th>Cell 3</th>

</tr>

<tr>

<th>Cell 4</th>

<td>Cell 5</td>

<td>Cell 6</td>

</tr>

 </table>

 </body>

</html>

2.Есеп:1001001.101(2)→(10

1001001.101(2=1*26+0*25+0*24+1*23+0*22+0*21+1*20+1*2-1+0*2-2+1*2-3=64+8+1+0,5+0,125=73,62510

3.Есеп:67.04(8)→(16)

67.04(8)=110111.0001002=37.116

 

 

45.

    1. Write a page in HTML with red text (# ee0000) and a green background (#aaffaa).

2. Translate the following number: 1AC.6(16)→(2) n.s.

3. Translate the following number: 232.7(8)→(10) n.s.

Write a page in HTML with red text (# ee0000) and a green background (#aaffaa).

<html>

<head>

<title> text </title>

</head>

<body bgcolor=”#aaffaa” >

<font color=”#ee0000”> text</font>

</body>

</html>

60.2) 1AC,6 (16) = 110 101 100, 011(2)

60.3) 232,7 (8) = 154, 875 (10)

 

46.   

 1. Write an HTML page using JavaScript that displays your age.

2. Translate the following number: 300,1(8)→(10) n.s.

3. Translate the following number: 1001111.1(2)→(16) n.s.

<html>

<head>

<title> age on JavaScript</title>

</head>

<body>

    <script type='text/javascript'>

function get_current_age(date) {

return ((new Date().getTime() - new Date(date)) / (24 * 3600 * 365.25 * 1000)) | 0;

}

alert(get_current_age('1999-08-18'));

</script>

</body>

</html>

62.2) 300,1(8) = 192, 125(10)

62/3) 1001111,1 (2) =4F, 8(16)

 

47.

    1. Write the program. Inserting a horizontal line in HTML.

2. Translate the following number: 66.5(10)→(8) n.s.

3. Translate the following number: 60.A(16)→(2) n.s.

Write the program. Inserting a horizontal line in HTML.

<html>

<head>

<title> text </title>

</head>

<body>

<hr>

Hello, World!

</hr>

</body>

</html>

64.2) 66.5(10) =102,4 (8)

64.3) 60.A(16) = 1 100 000, 101(2)

48.

    1. Write the program. Change the background color to yellow (# ffff00) in the HTML page.

2. Translate the following number: 9C.A(16)→(8) n.s.

3. Translate the following number: 355.25(10)→(2) n.s.

Write the program. Change the background color to yellow (# ffff00) in the HTML page.

<html>

<head>

<title> text </title>

</head>

<body bgcolor=”#ffff00” >

text

</body>

</html>

65.2) 9C.A (16) = 234,5 (8)

65.3) 355.25 (10) = 101 100 011, 01 (2) 

49.

    1. Write the program. Create a numerated list of animals on the HTML page.

2. Translate the following number: 654.3(8)→(10) n.s.

3. Translate the following number: 11000000.011(2)→(16) n.s.

Write the program. Create a numerated list of animals on the HTML page.
<html>

<head>

<title> text </title>

</head>

<body >

<ol>

<li> lion </li>

<li> cat </li>

<li> dog </li>

</ol>

</body>

</html>

66.2) 654,3 (8) = 428, 375 (10)

66.3) 11000000, 011(2) = CO,6(16)


50.   

Create a page in HTML that displays the name and surname of your favorite actor on the screen.

2. Translate the following number: 7D.E(16)→(10) n.s.

3. Translate the following number: 147.1(8)→(2) n.s.

Create a page in HTML that displays the name and surname of your favorite actor on the screen.
<html>

<head>

<title> text </title>

</head>

<body>

<bless><h1 align=”center”>Johnny Depp</h1></bless>

</body>

</html>

68.2) 7D,E (16) =125, 875 (10)

68.3) 147,1(8) = 1 100 111, 001 (2)

 


51.   

1. Create an HTML page with a definition list of 5 elements (<dl> tag)

2. Translate the following number: 133.6(8)→(2) n.s.

3. Translate the following number: A8.8(16)→(10) n.s.

Create an HTML page with a definition list of 5 elements (<dl> tag)

<html>

<head>

<title> text </title>

</head>

<body >

<dl>

<dt> Payment system </dt>

<dd> A set of procedures enabling the transfer of funds. </dd>

<dt> E-government </dt>

<dd> A single mechanism of state and citizens cooperation, also state bodies with one another, which enables its concerted activity over the help of information technologies. </dd>

<dt> A teleconference or teleseminar </dt>

<dd> The live exchange and mass articulation of information among several persons and machines remote from one another but linked by a telecommunications system. </dd>

<dt> Multimedia </dt>

<dd> Content that uses a combination of different content forms such as text, audio, images, animations, video and interactive content. </dd>

<dt> Telecommunication </dt>

<dd> Communication at a distance by technological means, particularly through electrical signals or electromagnetic waves.</dd>

</dl>

</body>

</html>

70.1) 133,6 (8) = 1 011 011, 11(2)

70.2) A8.8 (16) = 168,5 (10)

52.

     1. Create an HTML page with an arbitrary picture in the background.

2. Translate the following number: 55.0625(10)→(2) n.s.

3. Translate the following number: 111.5(8)→(16) n.s.

Create an HTML page with an arbitrary picture in the background.

<html>

<head>

<title> text </title>

<style>

body

{background: url(way to the image);

}

</style>

</head>

<body > text </body>

</html>

71.2) 55, 0625 (10) = 110 111, 0001 (2)

71.3) 111,5 (8)= 49, A (16)

 

53.   

Create a list of your favorite books on HTML using CSS properties.

2. Translate the following number: 104.5(8)→(2) n.s.

3. Translate the following number: 53.8(16)→(10) n.s.

Create a list of your favorite books on HTML using CSS properties.

. <html>

 <head>

    <title>Favourite books</title>

 </head>

 <body>

    <h1> Favourite books </h1>

    <ul {list-style-type: square;}>

              <li> Абай Жолы

              <li> Бақытсыз Жамал

   <li> Мастер и Маргарита

    </ul>

 </body>

</html>

2.Есеп: 104.58 → (2)

104.58=001000100.1012

3.Есеп 53.816 → (10)

53.816= 5*161+3*160+8*16-1=80+3+0.5=83.510

54.   

 1. Using CSS, create an HTML table with 3 rows and 3 columns.

2. Translate the following number: 96.625(10)→(8) n.s.

3. Translate the following number: 9A.E(16)→(2) n.s.

Using CSS, create an HTML table with 3 rows and 3 columns.

<html>

 <head>

    <title>Favourite books</title>

 </head>

 <body>

    <table {border: 1px solid #69c; border-collapse: separate; empty-cells:                              hide;}

th, td {border: 2px solid #69c;}>

<tr>

              <td> Jenny</td>

              <td> John</td>

              <td> Jeremy</td>

    </tr>

    <tr>

              <td>Nicki</td>

              <td>Nellson</td>

              <td> Natan</td>

    </tr>

    <tr>

              <td> Adam</td>

              <td>Akon</td>

              <td> Ariana</td>

    </tr>

    </table>

    </body>

    </html>

2.Есеп: 96.62510 → (8)

96:8=12 (0)

12:8=1 (4)

1:8=0 (1)

0,625*8=5

96.62510=140.58

3.Есеп 9А.Е16 → (2)

9А.Е16= 10011010.11102

55.

     1. Create a numbered list in HTML using CSS.

2. Translate the following number: 10011100.101(2)→(10) n.s.

3. Translate the following number: 342.7(8)→(16) n.s.

Create a numbered list in HTML using CSS.

<html>

 <head>

    <title>Favourite books</title>

 </head>

 <body>

    <h1> Favourite books </h1>

    <ol {list-style-type: decimal;}>

              <li> Абай Жолы

              <li> Бақытсыз Жамал

   <li> Мастер и Маргарита

    </ol>

 </body>

</html>

2.Есеп: 10011100.1012 → (10)

10011100.1012= 1*27 + 0*26 +0*25 +1*24 +1*23 +1*22 + 0*21+ 0*20 + 1*2-1 + 0*2-2 +1*2-3 =128+16+8+4+0,5+0,125= 156.62510

3.Есеп: 342.78 → (16)

342.78= 0 1110 0010.1112= 0Е2Е16

 

56.   

 1. Write an HTML page with a blue background and display on it a link written in red.

2. Translate the following number: 137.4(8)→(2) n.s.

3. Translate the following number: A8.6(16)→(10) n.s.

Write an HTML page with a blue background and display on it a link written in red.

<html>

<head>

<title> text </title>

 </head>

 <body link="red" bgcolor="blue">

<p><a href="example.html">link</a></p>

 </body>

</html>

2.Есеп: 137.48 → (2)

137.48=001011111.1002

 

3.Есеп: A8.616 → (10)

A8.616=  

57.

     1. Create an HTML page with an image of KazNU in the middle of the page.

2. Translate the following number: 104.25(10)→(2) n.s.

3. Translate the following number: 7D.4(16)→(8) n.s.


Понравилась статья? Добавь ее в закладку (CTRL+D) и не забудь поделиться с друзьями:  



double arrow
Сейчас читают про: