english Flashcards

help me (39 cards)

1
Q

variable

A

adjective. apt or liable to vary or change

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

recur

A

verb (used without object). to occur again, as an event, experience, etc.

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

apathy

A

noun. absence or suppression of passion, emotion, or excitement.

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

rebuff

A

noun. a blunt or abrupt rejection, as of a person making advances.

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

universal

A

adjective. of, relating to, or characteristic of all or the whole

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

confiscate

A

verb (used with object). to seize as forfeited to the public domain

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

absolute

A

adjective. free from imperfection

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

grieve

A

verb (used without object). to feel grief or great sorrow

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

humorous

A

adjective. characterized by humor

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

novice

A

noun. a person who is new to the circumstances, work, etc., in which he or she is placed

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

integrate

A

verb (used with object). to bring together or incorporate (parts) into a whole.

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

probable

A

adjective. likely to occur or prove true

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

committee

A

noun. a person or group of persons elected or appointed to perform some service or function, as to investigate, report on, or act upon a particular matter.

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

obsolete

A

adjective. to removed out of date or just ignore

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

i am assimilante

A

i am blinding in with the enviorment

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

we’ll have to wait for the storm to abate”

A

we’ll have to wait for the storm to lessin

16
Q

what does getDate() do

A

Get the day as a number (1-31)

17
Q

what does getDay() do

A

Get the weekday a number (0-6)

18
Q

what does getFullYear do

A

Get the four digit year (yyyy)

19
Q

what does getHours do

A

Get the hour (0-23)

20
Q

what does getMilliseconds() do

A

Get the milliseconds (0-999)

21
Q

what does getMinutes() do

A

Get the minutes (0-59)

22
Q

what does getMonth() do

A

Get the month (0-11)

23
Q

what does getHour() do

A

get the hour 1-24

24
what does getSeconds do
Get the seconds (0-59)
25
what does getTime() do
Get the time (milliseconds since January 1, 1970)
26
who do we use fgets()
e often use the fgets() function to read a line of text. Note that you must include the following arguments: the name of the string variable, sizeof(string_name), and stdin:
27
what does print() do
printf() is used to output values in C.
28
how get user input
To get user input, you can use the scanf() function:
29
what is a Math.round(x)
Returns x rounded to its nearest integer
30
31
what the kcuf backwards is Math.ceil(x)
Returns x rounded up to its nearest integer
32
what the hell is Math.floor(x)
Returns x rounded down to its nearest integer
33
Math.trunc(x)
Returns the integer part of x (new in ES6)
34
why do people use if statements
Use if to specify a block of code to be executed, if a specified condition is true
35
why do people use the else statement
Use else to specify a block of code to be executed, if the same condition is false
36
why do people use the else if statement
Use else if to specify a new condition to test, if the first condition is false
37
why do people use the switch statement
Use switch to specify many alternative blocks of code to be executed
38
- Bold text