Which type of focusing technique helps viewers stay with the subject? _______ focus helps people concentrate on a moving subject and helps maintain interest.​

Answers

Answer 1

Answer:

Follow focus

Explanation:

Given that Follow focus is a strategy that assists in keeping a subject that is moving toward the viewer well focused.

Therefore, the type of focusing technique which helps viewers stay with the subject is FOLLOW focus: it helps people concentrate on a moving subject and helps maintain interest.​


Related Questions

The ________________________ option allows one to start a numbered list on any number desired. [Set Starting Number Values]
Question 7 options:

Number Formats

Change List Level

Define New Number Format

Set Numbering Value

Answers

Answer:

Set Numbering Value.

Explanation:

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users to type, format and save text-based documents.

In Microsoft Word 2019, the users are availed with the ability to edit the word document in the following view type;

I. View Mode.

II. Print Mode.

III. Drift Layout.

A numbered list can be defined as a list of items that are ordered numerically or sorted sequentially.

Basically, it is best suited for steps or procedures that are to be done sequentially or in order i.e in an ascending order. Thus, a numbered list is an ordered list that starts from 1.

The Set Numbering Value option allows one to start a numbered list on any number desired. To automatically create a numbered list in Microsoft Word, you should press 1 followed by a period, leave a space, type a text and then press the enter button.

two ways in which some culter views that exist may affect a relationship negatively​

Answers

Answer:

some people say different culture less they get along

Explanation: or more

write Python statement to do the following tasks (a) create a list that contain the name of 5 student of your class (b) add one more name to the list of 5 students (c)
delete the first name from the list of student​

Answers

Answer:

classroster = ["Bill", "Tyler", "Jake", "Sam", "Joe"]

print("Original Roster: " + str(classroster))

classroster.append("June")

print("Added student: " + str(classroster))

classroster.pop(0)

print("Removed the first student" + str(classroster))

Explanation:

We create a variable named classroster and assign it a list value by using []

We print text with the value of the variable classroster, but we used the str tag to make it a string value

We used classroster.append to add "June" to the end of the list.

We then print the classroster again

We use classroster.pop(0) to remove "Bill" on the list. If we wanted to remove "Tyler" from the list, we would use classroster.pop(1).

If we wanted to remove "Jake" we would use classroster.pop(2)

and so on. goodluck!

what is two features of the minicomputer?​

Answers

Answer:

It is smaller in size than a mainframe computer. It is less expensive than a super and mainframe computer. It is not much more powerful than the mainframe and supercomputer, but powerful than microcomputers. It supports multiprocessing and multi-tasking.

Explanation:

Predict the future that social media will have on society or the environment.

Answers

Answer:

Social networks are becoming more and more popular. More than 80% of the 4.66 billion people on the planet with access to the internet are social network users… and this share is expected to grow!

Society will drift to technology and rely on it more.

Environment wouldn't be taken cared of, and may be damaged.

Explanation:

Answer:

The Influence of Social media is being used in ways that shape politics, business, world culture, education, careers, innovation, and more.

Explanation:

The Influence of Social media is being used in ways that shape politics, business, world culture, education, careers, innovation, and more.

What percentage of STEM-related degrees awarded in the 2002-2003 academic year were doctorates?

16.7 percent

0 34.8 percent

O 14.6 percent

O 12.9 percent

Answers

Answer:

34.8

Explanation:

I just took the test!

What is considered appropriate dress for men and women in the workplace? Select all that apply.

Answers

Answer:

I guess clean, pressured pants or skirt

and

dress shirts and ties

Answer:

the first and last

Explanation:

because you don't want to reveal any things that are inappropriate but you still want to be comfortarible.

Question # 1
Dropdown
Choose the word that matches each definition.
[ ] is the study of designing and building computers and computer-based systems.

Answers

Answer:

Computer engineering

Explanation:

Computer engineering is the answer

Which of the following algorithmic efficiencies would be considered LEAST efficient?

A. Linear
B. Constant
C. Polynomial
D. Exponential

Answers

Answer:exponential

Explanation: I believe

QUESTION 4 of 10: What term refers to the basic characteristics of a population segment, such as gender, age, and income?

Answers

272727727272727226282829292
Does it offer multiple choices?

Display the IP address of the default gateway of this device.

Answers

Answer:

ipconfig

Explanation:

Type ipconfig and look for a Default Gateway entry that is not blank.

Brandon realized that his program wasn’t running properly because he used a colon instead of a semi-colon. What kind of error did Brandon make?
syntax error

Boolean error?

logic error?

iteration error?

Answers

Answer:

Syntax Error

Explanation:

Syntax Errors a simple errors where you could forget something simple like a comma or maybe misspell a word.

Answer:

The error Brandon made by using a colon instead of a semi-colon is Syntax error

1 2

3 4

Question #4

Multiple Choice

Which statement is true about the random and secrets modules?

O Only the secrets module can generate random numbers.

O Both modules can generate random numbers.

Neither module can generate random numbers.

O Only the random module can generate random numbers.

Answers

Answer:

Both modules can generate random numbers.

Explanation:

Both the random and secrete modules are builtin programming modules used for generating random number variables. The random module consists of a number of methods in its module for random. number generation such as seed() ; getstate() ; random() ; choice() ; randrange() ; randint() and so on. Random methids are best for generating random numbers which are to be adopted for simulation or modeling. The secrete modules does the same however, numbers generated are stronger and less predictable than the random number modules. Secrete modules are usually adopted in the generation of authentication token and security pins.

Answer:

Neither module can generate random numbers.

Explanation:

Because I took the quiz and that's the right answer.

How do you open an application on the macOS?

Answers

Click the Launchpad icon in the Dock, or pinch closed with your thumb and three fingers on your trackpad. Then click an app to open it. You can also type an app's name to find the app in Launchpad, then press the Return key to open it.

Answer:

you can simply click on 'application' in the sidebar to open your default application folder, which contain for each app on your system.you can double click any of the icons in here to open them or take you to do it if currently open.

who plays oblox .............................

Answers

Answer:

Me

Explanation:

MEEEE!!! i love scary games

is an evaluation method that uses a program that tests another program.
O A customer satisfaction survey
O A test case
O Automated testing
O Print debugging

Answers

automated testing !!!!$

Answer:

automated testing

Explanation:

got it right on edge

Describe white blood cells you see at 10X?

Answers

Answer:

White blood cells are part of the body's immune system. They help the body fight infection and other diseases. Types of white blood cells are granulocytes (neutrophils, eosinophils, and basophils), monocytes, and lymphocytes (T cells and B cells). ... Also called leukocyte and WBC.

Explanation:

input data that can be accepted by a function in Python is called as​

Answers

Answer:

Getting User Input from Keyboard

Explanation:

There are two functions that can be used to read data or input from the user in python: raw_input() and input(). The results can be stored into a variable.

Answer:

also know as IDE

Explanation:

write a Python function that join the two string and print it ​

Answers

Answer:

string1 = "this is string 1"

string2 = " this is string 2"

print(string1 + string2)

Explanation:

the string1 variable is assigned with a string value(aka. str)

string2 is also a variable assigned with a slightly different string value

the 3rd line then prints string 1 and 2 to the console.

Answer:

Nothing complicated

See attached images

Need answer quick plz.

Fill in the blank with the correct response.

A colleague excitedly tells you she has created a interface component for SPSS, a statistics software program. She

has created a

Answers

Answer:

SPSS

IS THE ANSWER

IHOPEIT WILL HELP YOU

Answer:

wassup with it bro i don't even know the answer and i just want the points

Explanation:

What is the solution to the equation ?

Answers

There’s no solution to the equation
The correct answer is option D. No solution

There’s a saying in Hollywood that a film is written three times.
First in the __________.
Next, in __________.
And finally, in __________.

Answers

Answer: first in the screen play next in production and finally in the edit

Explanation:

why auto-updates can reduce the risk of a cyberattack?

Answers

Answer:

They help keep your software up to date.

Explanation:

Using Windows for example: With automatic updates, you don't have to search for updates online or worry about missing critical fixes or device drivers for your PC.

You can read more about it here: https://support.microsoft.com/en-us/windows/windows-update-faq-8a903416-6f45-0718-f5c7-375e92dddeb2

I hope this helps you!

What is one example of an emerging class of software

Answers

Answer:

"Push" Model web browsers.

Explanation:

A citation and its ____________________ can be entered at the same time. [Insert Citations]
Question 4 options:

name

date

source

table of contents

Answers

Answer: source

Explanation:

A citation and its source can be entered at the same time. Hence option c is correct.

What is citation?

Citation is defined as how you disclose to your readers that a particular passage in your work was taken from another source. Identifying the sources you used to obtain your knowledge can demonstrate to the reader that you did thorough investigation. to recognize and respect other scholars' work by giving them due credit.

Select the phrase or sentence you wish to cite by clicking at the end of it, and then select Insert Citations from the Citations & Bibliography group on the References tab. Choose the citation you want to use from the list provided under "Insert Citation."

Thus, a citation and its source can be entered at the same time. Hence option c is correct.

To learn more about citation, refer to the link below:

https://brainly.com/question/1272936

#SPJ2

Which one way in which using infrared in game console controllers could affect the experience of a person playing the game?

Please answer asap I need it now

Answers

An increasing amount of games is released on multiple platforms, and game designers face the challenge of integrating different interaction paradigms for console and PC users while keeping the core mechanics of a game. However, little research has addressed the influence of game controls on player experience. In this paper, we examine the impact of mouse and keyboard versus gamepad control in first-person shooters using the PC and PlayStation 3 versions of Battlefield: Bad Company 2. We conducted a study with 45 participants to compare player experience and game usability issues of participants who had previously played similar games on one of the respective gaming systems, while also exploring the effects of players being forced to switch to an unfamiliar platform. The results show that players switching to a new platform experience more usability issues and consider themselves more challenged, but report an equally positive overall experience as players on their comfort platform.

How does setting user permissions increase the security of a system?

Answers

Answer: This can allow for less hackers to acquire your most essential and private information. It will be kept private to you and only others you share with.

Explanation: For example, if I wanted to edit a document without being given the consent to do so this will breach the security of user permissions, but if the individual was to set the document to view only, I would not have access to edit or even change little aspects of it.

Which comparison operator means ‘is not equal to’?



!=


==


=#


%

Answers

Answer:

A. !=

Explanation:

== Means equal, != is like a block of that, meaning NOT EQUAL

As per the operators, the comparison operator that means 'is not equal to' is !=.

The comparison operator!= is used to detect whether two values are not equal. It is often used to assess conditions in programming languages and logical expressions.

When used, the operator determines if the values on each side of it are not equal. The expression evaluates to true if they are not equal.

This operator is useful for comparing data and executing various code blocks based on their inequality.

Thus, programmers may use the!= operator to generate branching logic and make decisions depending on the equality or inequality of values, increasing the flexibility and control of their program.

For more details regarding operators, visit:

https://brainly.com/question/29949119

#SPJ6

Jennifer has written a short story for children. What should be her last step before she submits the story for publication?

Answers

Answer: proofreading

Explanation:

The options include:

A. proofreading

B) editing

C) accepting track changes

D) rejecting track changes

Jennifer's last step before she submits the story for publication should be proofreading. Proofreading simply refers to the checking of errors in an article, story or text before such article or text is published.

Proofreading is the final stage when one is writing before it's published. When a story is proofread, spelling, formatting issues, punctuation marks and every other mistakes are checked and removed.

it is a JavaScript property used to call a function after a specified time, in milliseconds​

Answers

Answer:

setTimeout is a native JavaScript function (although it can be used with a library such as jQuery, as we'll see later on), which calls a function or executes a code snippet after a specified delay (in milliseconds).

Answer:

setTimeout is a native JavaScript function (although it can be used with a library such as jQuery, as we'll see later on), which calls a function or executes a code snippet after a specified delay (in milliseconds).

Other Questions
A student is saving money to buy a video game system. She has already saved some money and will continue saving the same amount of money each week. If the equation 200=20x+60 represents the student's savings for the video game system, what does x=7 represent?the number of weeks she needs to savethe total price of the video game systemthe amount of money she has already savedthe amount of money she still needs to save Have you ever played the gameTelephone?" What usually occurs? How can this mirror what happens with certain sources? How did hosting the 1996 Olympic Games affect downtown Atlanta?O A. It caused a major decrease in international tourism,OB. It caused the area to fall into an economic depression.O C. It caused apartment rental prices to decline.OD. It caused a significant population increase. A sculpture is 67 centimeters tall. What is the height of the sculpture in millimeters? 1.Use the number of zeros of the product when multiplying a number by a power of 10 to help you. 6.7 millimeters 67 millimeters 6,700 millimeters 670 millimeters2.Margo studied for 20 minutes. How many seconds did she study? 1,200 seconds 800 seconds 620 seconds 120 seconds3.How many liters are equal to 5,890 milliliters? Use the placement of the decimal point when dividing by a power of 10 to help you solve. 5.89 liters 58,900 liters 58.9 liters 589 liters Help me pls pls pls help pls pls pls which list shows the bacteria cells in order from least to greatest diameter? Write the equation of this circle in standard form. Look at Love of Winter by George Wesley Bellows. How does the Bellows show space in his painting? How can you tell which people in the painting are closer? How many solutions does x2 - 2x + 9 = 0 have and what type are they? Do NOT find theactual solutions. Help ASAP please !DEFINE1. Flexion2. Extension3. Static stretch4. Dynamic stretch5. Ballistic stretch paano magiging kapakipakinabang sa iyo ang kaalaman na ito fractions 4/16 2/8 15/60 3/9 which fraction is not equivalent to 1/4 3 7/10 + 5 3/4 + 3/4 Which factor has the most significant impact on the economy of North Korea?its peopleits governmentits locationits natural resources HELP QUICK True or false: Local winds are caused by unequal heating within a small area? What does stanza 7 reveal? SOMEONE PLZ PLZ HELP ASAP What Theorem do you use to find the length of a missing side on a right triangle? Help plis..............