information technology management midterm Flashcards

1
Q

Describe the COUNTBLANK function.

A

counts the number of empty cells in a given range

=COUNTBLANK(range)

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

Describe the UNIQUE function.

A

returns a list of unique values in a range or array

=UNIQUE(array,[by_col],[exactly_once])

if by_col set to TRUE, returns unique columns
if by_col set to FALSE or omitted, returns unique rows

if exactly_once set to TRUE, returns values that appear only once
if exactly_once set to FALSE, returns all distinct values

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

Describe the ROUND function.

A

rounds a number to a specified number of digits

=ROUND(number,num_digits)

if num_digits is negative, rounds number to the nearest multiple (if num_digits = -2, rounds number to the nearest multiple of 100)

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

Describe the NOT function.

A

returns the opposite of a given logical or Boolean value

=NOT(logical_value)

logical_value will always return either TRUE or FALSE

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

What does the Freeze Panes feature do?

A

locks specific rows or columns in place, ensuring that no matter how far you scroll, they remain visible

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

What does the Auto Fill feature do?

A

when you start to type a recognizable sequence, Excel can predict and automatically fill in the next values for you

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

What does the Flash Fill feature do?

A

Excel automatically recognizes patterns and does the work for you

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

What does the Data Validation feature do?

A

allows you to set specific criteria for the data that can be entered into a cell

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

Describe the XLOOKUP function.

A

=XLOOKUP(lookup_value,lookup_array,return_array,[if_not_found],[match_model],[search_model])

if_not_found returns the text specified if valid match is not found

if match_mode set to 0, Excel will look for an exact match and will return 0 if not found (0 can also be an error message)
if match_mode set to -1, Excel will look for an exact match and will return the next smaller item if not found
if match_mode set to 1, Excel will look for an exact match and will return the next larger item if not found

if search_mode set to 1, Excel will perform a search starting at the first item
if search_mode set to -1, Excel will perform a search starting at the last item

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

Describe what each parameter (Set cell, To value, By changing cell) does in Excel’s Goal Seek feature.

A

Set cell: contains the formula, the goal
To value: the value you want the formula to achieve
By changing cell: the cell containing the input you are willing to adjust to reach your goal

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

Describe what Excel’s Data Table feature does.

A

one-way data table = values are listed in a column or a row
two-way data table = values are listed in a column and a row

To figure out what to input in the Row input cell and the Column input cell in a Data Table, look at the table you created to identify which values are in the rows and which are in the columns. Then, check the corresponding cell references from your inputs and these cell references are what you input in the Data Table.

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

Describe the FV function.

A

=FV(rate,nper,pmt,[pv],[type])

look at pmt/how it’s compounded for rate and nper
pmt always negative
type 0 = at the end of the period
type 1 = at the beginning of the period

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

Describe the PV function.

A

=PV(rate,nper,pmt,[fv],[type])

look at pmt/how it’s compounded for rate and nper

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

Describe the PMT function.

A

=PMT(rate,nper,pv,[fv],[type])

look at type of payment for rate and nper

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

Describe the DATE function.

A

=DATE(year,month,day)

if converted to a number, this number is the number of days since January 1, 1900

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

Describe the DAY function.

A

=DAY(serial_number)

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

Describe the MONTH function.

A

=MONTH(serial_number)

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

Describe the TODAY function.

A

=TODAY()

will return today’s date

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

Describe the YEAR function.

A

=YEAR(serial_number)

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

Describe the CONCAT function.

A

combines multiple text strings into one

=CONCAT(text1,[text2],…)

you can add a blank space between strings by doing “ “

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

Describe the FIND function.

A

=FIND(find_text,within_text,[start_number])

start_number will specify the position in the within_text where the search will start

the function is case-sensitive

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

Describe the LEFT function.

A

=LEFT(text,[num_chars])

num_chars is the number of characters you want to extract starting from the left side of the text

if num_chars is not specified, Excel will return the first character

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

Describe the LEN function.

A

returns number of characters

=LEN(text)

24
Q

Describe the MID function.

A

extracts a specific number of characters from the middle of a text string

=MID(text,start_num,num_chars)

num_chars is the number of characters that will be extracted

24
Q

Describe the RIGHT function.

A

extracts specific number of characters from the end of a text string.

=RIGHT(text,[num_chars])

num_chars is the number of characters you want to extract starting from the right side of the text

if num_chars is not specified, Excel will return the first character

25
Q

Describe the TEXT function.

A

=TEXT(value,format_text)

value is the numerical value you want to format

format_text is the format you’d like to apply to that number

if format_text is DD, it will return number
if format_text is DDD, it will return the first 3 letters of the corresponding day of the week
if format_text is DDDD, it will return the fully written day of the week

26
Q

Describe the TRIM function.

A

removes any leading and trailing spaces in a text that do not make sense (keeps spaces in between words if it makes sense)

=TRIM(text)

27
Q

What does the #VALUE! error mean?

A

error when it finds spaces, characters, or text in a formula where it is expecting a number

28
Q

What does the #NAME? error mean?

A

signifies that something needs to be corrected in the syntax

29
Q

What does the #DIV/0! error mean?

A

means divide a formula by zero or an empty cell

30
Q

What does the #REF! error mean?

A

when a formula references a cell that is not valid

31
Q

What does the #NULL! error mean?

A

errors occur when you specify an intersection of two areas that don’t intersect, or when an incorrect range operator is used

32
Q

What does the #N/A error mean?

A

means that the numbers you are referring to in your formula cannot be found

33
Q

What does the #NUM! error mean?

A

contains numeric values that aren’t valid

34
Q

What does the ###### error mean?

A

means the column isn’t wide enough to display the value you’ve inputted

35
Q

Describe the IFERROR function.

A

=IFERROR(value,value_if_error)

value_if_error is the value to return if the formula evaluates to an error

36
Q

Describe the IF function.

A

=IF(condition,value_if_true,value_if_false)

37
Q

Describe the COUNTA function.

A

=COUNTA(value1,[value2],…)

looks at the number of records (can be words, numbers, etc.)

38
Q

Describe the SMALL function. (LARGE works the same way)

A

returns the k-th smallest value in a data set

=SMALL(array,k)

39
Q

Describe the AVERAGEIF function.

A

=AVERAGEIF(range, criteria, [average_range])

can only handle one condition

40
Q

Describe the SUMIF function.

A

=SUMIF(range, criteria, [sum_range])

41
Q

Describe the AVERAGEIFS function.

A

=AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], …)

can handle one or more criteria

42
Q

Describe the COUNT function.

A

=COUNT(value1, [value2], …)

looks at numbers only

43
Q

Describe the COUNTIF function.

A

=COUNTIF(Where do you want to look?, What do you want to look for?)

44
Q

Describe what happens in C$12.

A

column to change, but row to stay the same

45
Q

Describe what happens in $C12.

A

row to change, but column to stay the same

46
Q

Describe what happens in $C$12.

A

column and row stay the same

47
Q

What are the 4 components of information systems?

A
  • Hardware
  • Software
  • Data
  • Network
48
Q

Describe the MAX function.

A

=MAX(A2:A6, 30)

largest value in the range A2:A6 and the value 30

49
Q

What are the 3 methods for naming cells or a range of cells?

A
  • Type the name in the name box
  • Create from Selection
  • Name Manager
50
Q

What is the difference between a direct user and an indirect user?

A

direct user: users that interact directly with the existing IS
indirect user: users who depend on the results of direct users’ interactions with existing IS

51
Q

What does a consultant do? What about an analyst? What about a designer?

A

consultant: solves problems to help manager make better decisions
analyst: collecting and cleaning data (and using this data to build reports)
designer: developing software to better efficiency

52
Q

What are expert systems?

A

replicates what humans do

53
Q

What is deep learning?

A

when the data is strong enough that the computer will start learning by itself

54
Q

What are neural networks?

A

tries to replicate how the human brain works
A SUBSET OF MACHINE LEARNING

55
Q

What is machine learning?

A
  • Train the machine by showing examples of desired behaviors/outcomes
  • Train the machine by telling it what the real outcome should be
56
Q

What is weak AI? What is strong AI?

A

weak AI: trained to solve specific problems, exists in today’s world
strong AI: machines that are self-aware and conscious and who can plan for the future, does not exist yet