CSCI Exam 2 Review Flashcards

1
Q

SQL query

A

SELECT: used to clarify which column or row to display from the table
FROM: tables you want to pull from
WHERE: , =, OR, AND
ORDER by ASC or DESC

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

router

A

move info from divide to internet and internet to device

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

switch

A

box that takes one wireless plug and splits it into many outlets (internet powerbar) and makes sure that each connected device gets the right about of bandwidth (internet) smart internet splitter

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

NIC

A

network interface card: basically the HARDWARE responsible for connecting computer to internet

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

Wifi

A

technology that allows device to connect to the internet by connecting to a wireless router

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

Fastest cable that transmits media?

A

6a

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

Slowest cable that transmits media?

A

5

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

LAN

A

local area network: connected via direct connection or over wifi

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

WAN

A

wide area network: (worldwide) multiple LAM communicating with each other

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

What is the 802.11 standard used for?

A

guides how wifi and plan works

makes sure no channels overlap and each new version reduces interference from things (microwaves, bluetooth)

standard for wifi and plan

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

lpconfig

A

viewing and changing internet connection settings

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

ping

A

sends short message to another computer and measures how much time it took to receive a response

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

netstat

A

shows current connections your computer has to other computers

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

tracert

A

sends messages and shoes how many hops is between your computer and other computers

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

download

A

from internet to computer

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

upload

A

from computer to internet

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

3 things a network protocol should define about messages being sent between computers

A

Format of messages
Order of messages
Actions taken on the transmission or receipt of message

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

ARP

A

Address Resolution Protocol

How machines find the physical machine that data is coming from or going to by linking IP addresses to actual machines

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

MAC address

A

physical address of individual device (stored on NIC)

20
Q

TCP

A

breaks message into packets (TCP segments) and delivers
slower but reliable transfer
typical applications:email, web browsing
transfer layer

21
Q

UDP

A

fast but non-guaranteed transfer (best effort)
typical applications:VoIP
music streaming
transfer layer

22
Q

collision

A

can occur when 2 stations transmit at the same time

it is thrown out and then resent

23
Q

physical networking layer

A

sends data across the network through router

24
Q

VoIP

A

voice over internet protocol: fully digital phone service

SKYPE

25
Q

what are some top level domains

A

.com, .org, .net, .gov, .edu

26
Q

HTTP

A

hypertext transfer protocol: allows files to be transferred from a web server so that you can see them on your computer from a browser

27
Q

SMS

A

short message service: texting

28
Q

MMS

A

multimedia message service: can include text, sound, images, and video clips to other phones or emails

29
Q

GPS

A

global positioning system: 21 satellites built and operated by US military that constantly orbit Earth

satellites provide information to GPS-capabele devices to pinpoint locations on the earth

30
Q

digital convergence

A

single unifying device

media, internet, entertainment, and telephony needs

31
Q

example of digital convergence

A

smartphones

32
Q

digital signal

A

electrical signal that translates info into binary.

33
Q

analog signal

A

electrical signal where info is translated into electric pulses of varying amplitude; continuous

34
Q

what hardware can capture an image and convert it to digital signal

A

digital camera

35
Q

most popular type of database used throughout the world

A

relational databases; microsoft access

36
Q

data mining

A

process where great amounts of data are analyzed and investigates

objective is to spot significant patterns and trends that would not be obvious

37
Q

function of SQL verb Union

A

combines rows from 2 tables

SELECT name, email FROM students UNION SELECT name, email FROM teachers

38
Q

primary key

A

unique for each record; only one primary key in relational databases

39
Q

foreign key

A

foreign key in one table points to primary key in another

40
Q

what does it mean to normalize a table in a relational database

A

remove duplicate data

41
Q

HTML tag

A

controls formatting and display

only see text outside of tags

42
Q

CSS

A

controls formatting and display
how elements are to be displayed on screen
saves a lot of work and controls layout of multiple web pages all at once

43
Q

what is wrong w this:

Select * from employee where id=’5’

A

No quotes needed around 5

44
Q

what is wrong w this: Select employee from * where id=5

A

Should be Select * from employee

45
Q

what is wrong w this: Select * from employee where name=Zoey

A

’ ‘ need to be around Zoey

46
Q

what is wrong w this: Select * from employee where name=’Zoey’ or ‘Gracie’

A

Should be “name=’Zoey’ or name=’Gracie’