記憶度
6問
18問
0問
0問
0問
アカウント登録して、解答結果を保存しよう
問題一覧
1
What are the seven types of displaying numbers
decimal format, octal format, hexadecimal format, float point format, scientific notation, character format, binary format
2
In c programming this code are special sequence used to represent characters that are difficult to type directly into your code or that have specific meaning
escape codes
3
Types of string constant
char name
4
Variables hold a value which can be assigned when the variable is declared or later in the program
value
5
Main()
main function
6
Constants cannot be modified once defined ensuring data integrity
immutability
7
Will help you easily identify the use of that variable later on your program
variable name
8
In programming are fixed Values that remain and change during program execution they play a critical role in enhancing code readability Maintaining and reliability by assigning meaningful names to fixed values
constants
9
Types of identifiers
int numbers, char name
10
It is a software a set of instructions that provide information to computer to solve problems
c programming
11
//by:
single line comment
12
;
program statement terminator
13
Types of character constant
single constant, string constant
14
In programming are symbols that represents values stored in computer memory
variables
15
Types of specify the size and type of variable values
primitive data
16
(" Hello world")
space sequence
17
Int
function return type
18
<stdio.h>
standard input output library
19
Types of constant
numeric constant, character constant
20
Variables have a data type that defines the kind of data they can store Defines the type of data that are variable can hold
data types
21
He is also known as the father of c programming
dennis ritchie
22
{ }
beginning logical program block, return statement
23
Six types of c tokens
keywords, identifiers, constant, string, special keywords, operators
24
Where was the c programming invented
bell laboratories
25
Typically defined using language specific syntax constants have global or local scope
declaration
26
Special keywords
[], {}, (), #, ", =
27
When was the c programming invented
1972
28
0
return value
29
They may have explicit or implicit types aiding in code clarity
type
30
n
scape sequence
31
This is a program that is a basic unit of the code that has specific meaning tokens in c or include keywords identifiers literals operators and punctuations
c tokens
32
Types of operators
arithmetic operator, relational operator, logical operator, assignment operator, bitwise operator, conditional operator, special operator, increment and decrement operator
33
What are the four characteristics of constants
immutability, declaration, type, purpose
34
Constant represents fixed values known at compile time improving code readability
purpose
35
Involves specifying the variables name and optionally its type
declaring variables
36
)
end terminator
37
Primitive data types
primitive data, modifiers, variables, data types, declaring variables, variables name, value, constants
38
Types of numeric constant
integer constant, float constant
39
/"
multiple comment block
40
Types of keywords
int, char, break, goto, void, switch
41
Return
return statement
42
Refers to the process of representing numerical values on the console or output window
displaying numbers
43
#include
processor directive
44
Sign, unsigned long and short are prefix and used with integer based data types
modifiers
45
What are the six common challenges that program may encounter when displaying numbers
choosing the correct format specifier, precision and rounding, conversation and type casting, formatting, overflow or underflow, localization
46
Printf
print function