Lesion 8: Programing and App Development

0.0(0)
studied byStudied by 3 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

What is the best way to install a web application on your computer?

You do not install a web application on your computer. You access it through your browser.

2
New cards

In terms of data storage, what is the advantage of using a server over a workstation?

If data is stored in the server and not on the local workstation, it is easier to apply access controls and to back it up.

3
New cards

How does a markup language differ from a compiled language?

A markup language is not a programming language, rather it is a way of using nested tags within a document to describe its structure and contents.

4
New cards

In a program, what does a loop do?

A loop performs one or more instructions until a condition is met.

5
New cards

What are constants and variables examples of?

Programming identifiers

6
New cards

You want to check whether a condition has been met, and if it has, perform one action. Otherwise, you want your program to perform a second action. What sort of programming operation would help achieve this?

A conditional branch

7
New cards

What three scripting options are commonly used in Windows 10 to perform administrative tasks?

Batch files, Windows PowerShell scripts, and VBScripts

8
New cards

What three things define an object?

Properties, attributes, and methods

9
New cards

What is the difference between a procedure and a function?

A procedure does something, while a function does something and then returns a value to the main program.

10
New cards

What type of programming concept allows for a variable size container?

A vector

11
New cards

What are the characteristics associated with interpreted programming language?

Interpreted languages do not need to be complied because the code gets converted to a machine code and runtime.

12
New cards

What shows the structure of code without using the specific syntax of any one language?

Pseudocode

13
New cards