Comp 101 Flashcards

1
Q

How many numbers are in an IP address?

A

4 numbers separated by a dot (.)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What can the individual numbers in an IP address range to?

A

0-255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does the IP in IP address stand for?

A

Internet Protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How many bytes in an IPv4 address?

A

32 bytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How many bytes in an IPv6 address?

A

128 bytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How many bits in 8 bytes?

A

64 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a computer that provides a service or has something to share over the internet?

A

server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a computer that consumes a service over the internet

A

client

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does WAN stand for?

A

Wide Area Network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does LAN stand for

A

Local Area Network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What kind of network is the internet

A

WAN

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What Does DNS stand for and what does it do?

A

Domain Name Service. Translates numbers to names.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is batch processing?

A

When a computer only works on one task at a time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

When a computer is shared between multiple users what is it called?

A

Timesharing - using one computers processing power and sharing it with others

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Who funded the ARPAnet?

A

DARPA - Defense Advanced Research Project Agency

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the purpose of the ARPAnet?

A

To create a large network of computers to accelerate knowledge transfer and reduce the redundant re-researching of subjects by making everything available online.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What does IMP stand for?

A

Interface Message Processor - Acted as a gateway and interface to the mainframe, It controlled network activities to allow the processing of program and data files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What Does HTTP stand for and what does it do?

A

HyperText transfer protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is a host name?

A

A host name is a IP address converted into words so humans can memorize it easier. It is done by the DNS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What does URL stand for and what does it do?

A

Uniform Resource Locator - Is a pathway for websites to be found

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What does HTTP stand for and what does it do?

A

Hyper Text Transfer Protocol - Method of sending files between computers through a network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What does FTP stand for and what does it do?

A

File transfer protocol - transfers files securely between computers on a network by asking the user to login

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

what does RAM stand for and what does it do?

A

Random access memory - Temporary memory used for running programs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What does the HTML code rowspan do?

A

makes the cell vertically taller

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
What does the HTML code colspan do?
makes the cell horizontally wider
26
How do you make an un ordered list in HTML? How about an ordered list?
ordered list |
27
How do you insert an image in html?
image
28
What does putting a search term in "quotations" do?
It makes it so that any phrase in quotations will be searched as a phrase instead of individual words
29
What is a computer network?
2 or more computers connected together for the purpose of sharing resources and communicating
30
What does MAN stand for and what is its purpose?
Metropolitan Area Network - connects computer resources in a local geographical area
31
What is a web server
When you click a link you enter a relationship with the web server
32
give an example of server software
Apache
33
give an example of client software
Web browser, FTP program
34
What does TCP stand for and what does it do?
Transmition control protocol - defines how message are broken down and re assembled
35
What does IP stand for and what does it do?
Internet Protocol - Defines Where the (which address) the packets are sent to
36
What does a not gate do?
reverses input
37
Is the NOT gate unary?
Yes, because it only accepts one input
38
What does the AND gate do?
Takes 2 inputs and one output. The output will be true only if BOTH the inputs are true. ex 0/1 = 0, 1/1 = 1
39
What does a OR gate do?
takes 2 inputs and provides one output. The output is true if ANY one of the inputs is true. ex. 0/1 = 1, 0/0 = 0, 1/1 = 1
40
Name the following gates: |> >) D
``` |> = NOT >) = OR D = AND ```
41
build a half adder
0-|=>)-----------| | |=D---------1 1-|=D---|---|>---| |______________0
42
what is the IF function in Excel?
The IF function performs a logical test and and delivers an output if true and an output if not true
43
what is the format for the IF function?
=IF(Logical_test,Value_If_True,Value_If_False)
44
What does the Vlookup function in Excel do?
Vlookup searches for a value in a selected grid, if it finds the value it returns a selected value
45
What is the format for the Vlookup Function?
=Vlookup(Lookup_Value,Table_Array,Return_Value,Range)
46
In excel, how would you count all the values in a column greater than 5?
=CountIF(A1:A3,">5")
47
In HTML what does the

tags indicate?
the start and end of a paragraph
48
What does tags indicate?
Tags will make the text in between bold.
49
What do tags indicate?
text in between tags is in Italics
50
what does the
tag do?
The tag produces a line from left to right across the page
51
what do
tags do?
tags produce an ordered list
52
what do
tags do?
tags produce an un-ordered list
53
what do
  • tags do?
    tags are the items in a list.
    54
    how do you put a link in a web page? use google.ca as an example
    55
    How do you put an image in a web page? use an image called pic.jpg and assume that it is accesible to the website. Change name for the picture that the web user will see.
    A Nice Picture
    56
    How would you change the body of a webpage's background colour?
    57
    How would you change the font color on a webpage?
    58
    what does the

    tag do?
    This tag creates a heading. the heading is bigger or smaller depending on the the number following the H. The smaller the number the bigger the heading.
    59
    how would you make all

    tags have red font?

    h2 {color : red}
    60
    In Alice what does the properties tab do?
    The properties tab lets you change the physical features of an object, make it opaque
    61
    converting numbers from binary to regular what should you make, hmm Christopher?
    a power chart of 2 so i dont make mistakes
    62
    When using VLOOKUP, for the column return section, how would you input to the get the value from the column one over? what about 3 over?
    1 would return the cell in the column next to the desired cell and 3 would return the cell 3 columns over from the desired cell
    63
    How does CountIf work?
    has the format COUNTIF(range, criteria) | COUNTIF counts the number of cells that satisfy the criteria
    64
    What is an XOR Gate? What is its truth table?
    ``` An XOR gate is only true if the only ONE of the inputs is true 0 0 = 0 1 0 = 1 0 1 = 1 1 1 = 0 ```