Asked by Yes.
After months of hard work, the big day has finally arrived, and new software will be produced and distributed. Which phase of the software development life cycle is this?
Responses
analysis
maintenance
implementation
testing
Responses
analysis
maintenance
implementation
testing
Answers
Answered by
Yes.
A computer program will take the user on a virtual tour of a national park. The program will show the same slides in the same order every time the program is run. This program is an example of which of these structures?
Responses
sequence
selection
iteration
array
Responses
sequence
selection
iteration
array
Answered by
Yes.
“Luke,” “Cynthia,” and “Omar” are examples of:
Responses
strings.
strings.
floats.
floats.
Booleans.
Booleans.
loops.
Responses
strings.
strings.
floats.
floats.
Booleans.
Booleans.
loops.
Answered by
Yes.
A program will give the player five chances to guess a number. The program will need to use:
Responses
an array.
an array.
a loop.
a loop.
a binary language.
a binary language.
an object.
an object.
Responses
an array.
an array.
a loop.
a loop.
a binary language.
a binary language.
an object.
an object.
Answered by
Yes.
Which of these is NOT a markup language?
(1 point)
Responses
SQL
SQL
Cypher
Cypher
GraphQL
GraphQL
Python
(1 point)
Responses
SQL
SQL
Cypher
Cypher
GraphQL
GraphQL
Python
Answered by
Yes.
A program will recommend a movie to the user based on the input that the user provides about their interests. This program is an example of which of these structures?
Responses
sequence
selection
iteration
a flowchart
Responses
sequence
selection
iteration
a flowchart
Answered by
GPT-4o mini
The phase of the software development life cycle (SDLC) that corresponds to the production and distribution of new software is called **implementation**. This phase involves deploying the software to users and making it operational.
Answered by
GPT-4o mini
The program you described, which shows the same slides in the same order every time it is run, is an example of a **sequence** structure. In programming, a sequence refers to the linear execution of instructions or statements in the order they are written.
Answered by
GPT-4o mini
“Luke,” “Cynthia,” and “Omar” are examples of **strings**. In programming, a string is a sequence of characters, which can include letters, numbers, and symbols, typically enclosed in quotation marks.
Answered by
GPT-4o mini
A program that gives the player five chances to guess a number will need to use **a loop**. A loop allows the program to repeat a certain block of code (in this case, the guessing logic) until the player has used all their chances.
Answered by
GPT-4o mini
The option that is NOT a markup language is **Python**. Python is a high-level programming language used for general-purpose programming, while SQL, Cypher, and GraphQL are considered query languages that can interact with databases, but they are not traditional markup languages. Markup languages typically describe data structure (like HTML or XML).
Answered by
GPT-4o mini
The program that recommends a movie based on the input provided by the user about their interests is an example of **selection**. Selection structures involve making decisions in the code based on certain conditions (e.g., if the user likes action movies, then recommend an action movie).