Question: Computer software is the collection of program instructions that allow the hardware to do a specific job. Group of answer choices True False Which computer

Computer software is the collection of program instructions that allow the hardware to do a specific job.
Group of answer choices
True
False
Which computer environment is characterized by many users connecting to one or more computers who all share output devices (such as printers) and secondary storage devices (such as disks)?
Group of answer choices
cloud computing
client/server
distributed computing
time-sharing
Which computer environment splits the computing processing between a central computer and users computers?
Group of answer choices
distributed computing
cloud computing
time-sharing
client/server
Which computer environment is characterized by servers and storage devices being spread out across multiple geographic areas and connected via the Internet?
Group of answer choices
time-sharing
client/server
distributed computing
cloud computing
Program development involves these major steps: understanding the problem, developing a solution, writing the program, and then testing the program.
Group of answer choices
True
False
Which is an example of general-purpose application software?
Group of answer choices
system sort
main memory
operating system
database management system
Todays large-scale, modern programming projects are built using a series of interrelated phases commonly referred to as the ____ cycle.
Group of answer choices
program development
system development life
software engineering
system analysis
Which statement would print the following output: 23 z 4.100000?
Group of answer choices
printf("%d %c %f",23,'z',4.1);
printf("%d %c %x",23,'z',4.1);
printf("%i%c%f",23,'z',4.1);
printf("%d%c%f",23,'z',4.1);
Which programming language was used to develop the first version of UNIX?
Group of answer choices
C
B
BCPL
ALGOL
In C, variables must be declared and defined at the same time.
Group of answer choices
True
False
Keywords, which include syntactical words such as if and while, are also known as _____ words.
Group of answer choices
line
reserved
token
block
In a C language conversion specification, what type of modifier is used to modify the type specified by the conversion code?
Group of answer choices
width
precision
flag
size
In a C conversion specification for inserting data into the stream, the flag modifier is used to change _____.
Group of answer choices
the justification of values
the type specified by the conversion code
floating-point number precision
output width
What term is used for named memory locations that have a type, such as integer or character, which is inherited from their type?
Group of answer choices
identifiers
variables
functions
tokens
Which was the first language to use a block structure made up of a sequence of code statements?
Group of answer choices
Modula
ALGOL
Pascal
C
Assuming that x has an initial value of 3, what is the value of the expression on the right of the assignment operator?
x = x +4;
Group of answer choices
3
9
5
7
An expression is a sequence of operands and operators that reduces to a single value.
Group of answer choices
True
False
An expression is turned into an expression statement by placing which symbol after it?
Group of answer choices
asterisk
colon
period
semicolon
What is the final value of the following expression?
3*4+4/2-5*4
Group of answer choices
6
-12
-6
-12
Which term is used for the parsing direction used to evaluate an expression?
Group of answer choices
cast
promotion
associativity
block
An action that output from the evaluation of an expression is a(n)_____.
Group of answer choices
return value
operation
side effect
null statement
Which statement about implicit type conversion is true?
Group of answer choices
Promotion occurs during an assignment if the right expression has a lower rank; demotion occurs if the right expression has a higher rank.
When the types of the two operands in a binary expression are different, C must be prompted to convert one type to another.
Characters cannot be used in arithmetic expressions.
A long double real has a lower conversion rank than a long integer.
Which of the following options is considered a useless expression statement?
Group of answer choices
x *5;
x++
x = x +30;
x +30
Which operator is used to get the address of a variable?
Group of answer choices
*
;
:
&
In a typical C program, the main module has submodules and therefore is known as a _____ module.
Group of answer choices
called
calling
core
decomposed
A block is zero or more statements enclosed in a set of _____.
Group of answer choices
forward slashes
quotation marks
parentheses
braces
In the function definition, the parameters are contained in the _____.
Group of answer choices
function declaration
formal parameter list
function body
return statement
A function cannot return data.
Group of answer choices
True
False

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!