Computer Fundamentals (Final Term)

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/73

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

74 Terms

1
New cards

#include

Instructs the C preprocessor to find the text file “stdio.h” or the standard input and output.

2
New cards

Comments (/* */)

May span any number of lines

3
New cards

Main

The most important. It defines the point at which your program starts to execute.

4
New cards

“{“

Means begin in Braces

5
New cards

“}”

Means end in Braces

6
New cards

“//”

A comment that only spans 1 line

7
New cards

Printf

Standard way of producing output.

8
New cards

“\n”

How C handles new lines. or “Enter”

9
New cards

Return

Causes the value to be passed back to the operating stem.

10
New cards

Return 0;

Means that the code is successful.

11
New cards

Return 1:

Means that the code failed.

12
New cards

True

Statements in the body are ended with semicolons “;”

13
New cards

True

Indention is ignored by the compiler (but it is important in programming)

14
New cards

True

C is case sensitive

15
New cards

True

Strings are placed in double quotes (“ “)

16
New cards

\t

Means tab or space

17
New cards

Data Type

Indicates the type of data that can be represented in the value of the data element.

18
New cards

int: integer

A whole number

19
New cards

float: floating point value

A number with a fractional part

20
New cards

double

A double-precision floating point value.

21
New cards

char (enclosed in ‘ ‘)

A single character

22
New cards

void

Valueless special purpose type

23
New cards

%d

int: integer

24
New cards

%f

float: floating point value

25
New cards

%lf

double

26
New cards

%c

char

27
New cards

%s

void

28
New cards

True

Local Variables must be declared after the “{“

29
New cards

True

Global Variables must be declared after the directives

30
New cards

True

Valid characters are letters, digits, and “__”

31
New cards

True

First character cannot be a digit

32
New cards

True

There are 31 character for local variables

33
New cards

True

There are 6 global variables

34
New cards

True

Name must relevant to its value

35
New cards

Constant

Retains a constant value throughout the execution of the program

36
New cards

Scanf

Gets an input value from the user

37
New cards

True

double r;

const double pi = 3.14159;

double a;

printf("\nEnter Radius Value:\t");

scanf("%lf", &r);

without the “&” the value will retain the generated random number during the declaration.

38
New cards

Operators

Used to perform operations on variables and values

39
New cards

Arithmetic Operators

Used to perform common mathematical operations

40
New cards

+

Addition

41
New cards

-

Subtraction

42
New cards

*

Multiplication

43
New cards

/

Division

44
New cards

%

Modulus

45
New cards

++

Increment

46
New cards

--

Decrement

47
New cards

Increment

Increases the value of an operand by 1

48
New cards

Decrement

Decreases the value of an operand by 1

49
New cards

Unary Operators

Only operates on a single operand

50
New cards

Assignment Operators

Used to assign values to variables

51
New cards

Comparison Operators

Compare two values (or variables)

52
New cards

Comparison Operators

Helps to find answers and make decisions

53
New cards

Comparison Operators

Return Value is either 1 for true and 0 for false. These are also known as “Booelan Values

54
New cards

==

Equal to

55
New cards

!=

Not equal to

56
New cards

>

Greater than

57
New cards

<

Less than

58
New cards

>=

Greater than or Equal to

59
New cards

<=

Less than or equal to

60
New cards

Logical Operators

Can test true or false. Used to determine the logic between variables/values

61
New cards

&&

Logical and — returns true if both are true

62
New cards

||

Logical or — returns true if one is true

63
New cards

!

Logical not — reverse, returns false is result is true

64
New cards

Operator Precedence

Determines the grouping of terms in an expression and decide how an expression is evaluated

65
New cards

<math.h>

Contains methods for performing mathematical operations

66
New cards

ceil (number)

Rounds up the given number

67
New cards

floor (number)

Rounds down the given number

68
New cards

sqrt (number)

Returns the square of the given number

69
New cards

pow (base, exponent)

Returns the power of the given number

70
New cards

abs (number)

Returns the absolute value of the given number

71
New cards

Type Casting

Converting one datatype into another

72
New cards

Implicit Type Casting

Converts the datatype to any variable without using the actual value.

73
New cards

Explicit Type Casting

Force the conversion between data types.

74
New cards

Advantages of Type Casting

  • makes the program very lightweight

  • type representation and hierarchies

  • helps programmers to convert one data type to another type