english Flashcards

help me

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
Q

what does getSeconds do

A

Get the seconds (0-59)

25
Q

what does getTime() do

A

Get the time (milliseconds since January 1, 1970)

26
Q

who do we use fgets()

A

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
Q

what does print() do

A

printf() is used to output values in C.

28
Q

how get user input

A

To get user input, you can use the scanf() function:

29
Q

what is a Math.round(x)

A

Returns x rounded to its nearest integer

30
Q
A
31
Q

what the kcuf backwards is Math.ceil(x)

A

Returns x rounded up to its nearest integer

32
Q

what the hell is Math.floor(x)

A

Returns x rounded down to its nearest integer

33
Q

Math.trunc(x)

A

Returns the integer part of x (new in ES6)

34
Q

why do people use if statements

A

Use if to specify a block of code to be executed, if a specified condition is true

35
Q

why do people use the else statement

A

Use else to specify a block of code to be executed, if the same condition is false

36
Q

why do people use the else if statement

A

Use else if to specify a new condition to test, if the first condition is false

37
Q

why do people use the switch statement

A

Use switch to specify many alternative blocks of code to be executed

38
Q

<b> - Bold text</b>

A