CENG

studied byStudied by 7 people
5.0(1)
get a hint
hint

data organized in rows and columns

1 / 29

Tags and Description

programming for engineers

30 Terms

1

data organized in rows and columns

spreadsheet

New cards
2

3 uses of Excel

store, manipulate, and present data

New cards
3

collection of worksheets

workbook

New cards
4

spreadsheet

worksheet

New cards
5

group of cells

range

New cards
6

piece of data with address; object (complex data type)

cell

New cards
7

$A$1:$A$1 (has $ sign)

absolute

New cards
8

A1:C3 (no $ sign)

auto increments

New cards
9

list at least four data types we worked with in excel

text, currency, date, time

New cards
10

what is an example of an IF formula in excel

=IF(A1>10, “Yes” , “No”)

New cards
11

in =IF(A1>10, “Yes” , “No”), the yes is outputted if the statement is….

true

New cards
12

in =IF(A1>10, “Yes” , “No”)the no is outputted if the statement is….

false

New cards
13

what is an example of an AND formula in excel

=AND(A1>10, B1>10)

New cards
14

what has to qualify for an AND formula in excel to be true?

=AND(x,y)

both x and y have to be true

New cards
15

what is an example of an OR formula in excel

=OR(A1>10, A1<10)

New cards
16

what has to qualify for an OR formula in excel to be true?

=OR(x,y)

either x or y has to be true

New cards
17

what is an example of a FIND formula?

=FIND(“.”,A1,1)

New cards
18

what goes in each of these blanks in a FIND formula?

=FIND(“ __ “ , __ , ___ )

find this, cell number, start number

New cards
19

what is an example of a RIGHT formula?

=RIGHT(find, 2)

New cards
20

what goes in each of these blanks in a FIND formula?

=RIGHT( __ , __ )

text to look for, number of characters

New cards
21

basics of VBA

writing programs to process data in excel

New cards
22

what are pivot tables useful for?

analyzing data and automating the storage of data

New cards
23

write how the syntax to input and output a String in Arduino

string myName;

serial.println(“Enter your name”);

while (serial.available == 0){ //wait}

myName= seral.readString

New cards
24

write the arduino code to count the number of button presses that occur in a given time frame

pinMode (12, INPUT_PULLUP); //reads LOW when pressed

int state = digitalRead(12);

delay (50);

if (state == LOW){ //pressed down

while (digitalRead(12) ==LOW){ count++;}

New cards
25

symbol for XOR in C++

^

New cards
26

symbol for OR in C++

||

New cards
27

symbol for NOT in C++

~

New cards
28

symbol for AND in C++

&

New cards
29

symbol for LS in C++

<<

New cards
30

symbol for RS in C++

New cards

Explore top notes

note Note
studied byStudied by 43 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 10 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 5210 people
Updated ... ago
4.9 Stars(24)
note Note
studied byStudied by 7 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 27 people
Updated ... ago
5.0 Stars(3)
note Note
studied byStudied by 5 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 8 people
Updated ... ago
5.0 Stars(1)

Explore top flashcards

flashcards Flashcard83 terms
studied byStudied by 24 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard54 terms
studied byStudied by 22 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard157 terms
studied byStudied by 8 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard244 terms
studied byStudied by 4 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard43 terms
studied byStudied by 6 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard122 terms
studied byStudied by 11 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard77 terms
studied byStudied by 28 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard67 terms
studied byStudied by 3 people
Updated ... ago
5.0 Stars(1)