PLEASE HELP ASAP!!!!!!!






Is this statement true or false?

You can apply only one of these at a time: underline, bold, or italics.


true

false

Answers

Answer 1

Answer:

i am pretty sure that is false

Explanation:


Related Questions

Categorive the given websites based on their possible website structure
company website
bookstore website
computer-based
training modules
single product website
city library website
online in store website
Hierarchical
Sequential
Matrix
Hi

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

There are different website structures such as hierarchical, sequential, and matrix. These websites structure helps the designers to create a meaningful website.

In this question, it is asked to categories the given website into their website structure.

The given websites are:

company website bookstore website computer-based  training modules  single product website city library website online in-store website

Now, we will categorize these websites into their website structure:

Hierarchical website structure:

Bookstore website

city library website

online in-store website

Sequential website structure:

single product website

computer-based training module

Matrix website structure:

Company website.

Here are the categorizations of the given items based on their storyboarding techniques:

Computer-based training modules: Linear

School website: Webbed

Bookstore website: Webbed

Single-product website: Linear

County library website: Webbed

Online gift store website: Linear

Federal government website: Hierarchical

identify the final stage of the object found in the image in the given text

Answers

Answer:

science fiction book

Explanation:

What is the value of the variable? (1 point)
double dNum =
(int) 38.78;

1) 38
2) 38.0
3) 38.78
4) 39
5) Error: incompatible types

Answers

2) 38.0

it’s converted into int in then back to double

Can someone find out what this binary number thing is. Just find out the message, I'm having a difficult time

Answers

Answer:

Press alt and F4 to see answer

Explanation:

Help, please! I will mark as brainliest

Answers

Answer:

Change line 7 to:

for( int i=0; i < names.length; i++)

Last element in the array is one less than the length, ie:

stArr1.length - 1

To print every other value, you replace index++ with index += 2

Explanation:

Not only should you change the <= into <, but also i should start at 0, not 1. The first element of an array has index 0.

The position of a runner in a race is a type of analog data. The runner’s position is tracked using sensors. Which of the following best describes how the position of the runner is represented digitally?
A
The position of the runner is determined by calculating the time difference between the start and the end of the race and making an estimation based on the runner’s average speed.
B
The position of the runner is measured and rounded to either 0 or 1 depending on whether the runner is closer to the starting line or closer to the finish line.
C
The position of the runner is predicted using a model based on performance data captured from previous races.
D
The position of the runner is sampled at regular intervals to approximate the real-word position, and a sequence of bits is used to represent each sample.

Answers

Answer:

D. The position of the runner is sampled at regular intervals to approximate the real-word position, and a sequence of bits is used to represent each sample.

Explanation:

C was wrong for me :(

Introduction:

The runner position is detected by sensors in a race. It is very difficult to keep track of every racer position manually therefore computer program are used to keep exact recordings.

Explanation:

The data is sometimes recorded manually and is in analog form which is converted in to digital form.

Conclusion:

The correct answer is D. The position of the runner is sampled at regular intervals to approximate the real-word position, and a sequence of bits is used to represent each sample.

Learn more at https://brainly.com/question/24577222

Use the table and the drop-down menus to order the
steps.
Click on the New tab.
Click on the Save or Save As tab.ha
Click on the Blank workbook image.
Type data into the columns and rows.
Create file name and choose location of file.

Answers

Answer: 2, 6, 3, 4, 7

Explanation:

Answer:

2

6

3

4

7

Explanation:

Which statement describes a biotic factor interacting with the environment?

Water flows down a creek bed.
Soil contains nutrients for growth.
Deer graze through the grassland.
The sun emits solar rays that reach Earth.

Answers

Answer:

Deer graze through the grassland.

Explanation:

Biotic factors are living components of the environment that shapes the ecosystem. Abiotic factors are the non-living component of the environment.

These biotic factors are plants, animals and micro-organisms.

A deer grazing through the grassland is a a biotic factor interacting the environment. The other choices contains abiotic factors.

Abiotic factors are soil, sunlight, nutrients etc.

Answer:

C

Explanation:

How do you skip the drawing steps in turtle graphics and just get the result? Thank you.

Answers

Answer:

Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966.

Imagine a robotic turtle starting at (0, 0) in the x-y plane. Give it the command turtle.forward(15), and it moves (on-screen!) 15 pixels in the direction it is facing, drawing a line as it moves. Give it the command turtle.left(25), and it rotates in-place 25 degrees clockwise.

By combining together these and similar commands, intricate shapes and pictures can easily be drawn.

The turtle module is an extended reimplementation of the same-named module from the Python standard distribution up to version Python 2.5.

It tries to keep the merits of the old turtle module and to be (nearly) 100% compatible with it. This means in the first place to enable the learning programmer to use all the commands, classes and methods interactively when using the module from within IDLE run with the -n switch.

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it needs a version of Python installed with Tk support.

The object-oriented interface uses essentially two+two classes:

The TurtleScreen class defines graphics windows as a playground for the drawing turtles. Its constructor needs a tkinter.Canvas or a ScrolledCanvas as argument. It should be used when turtle is used as part of some application.

The function Screen() returns a singleton object of a TurtleScreen subclass. This function should be used when turtle is used as a standalone tool for doing graphics. As a singleton object, inheriting from its class is not possible.

All methods of TurtleScreen/Screen also exist as functions, i.e. as part of the procedure-oriented interface.

RawTurtle (alias: RawPen) defines Turtle objects which draw on a TurtleScreen. Its constructor needs a Canvas, ScrolledCanvas or TurtleScreen as argument, so the RawTurtle objects know where to draw.

Derived from RawTurtle is the subclass Turtle (alias: Pen), which draws on “the” Screen instance which is automatically created, if not already present.

All methods of RawTurtle/Turtle also exist as functions, i.e. part of the procedure-oriented interface.

The procedural interface provides functions which are derived from the methods of the classes Screen and Turtle. They have the same names as the corresponding methods. A screen object is automatically created whenever a function derived from a Screen method is called. An (unnamed) turtle object is automatically created whenever any of the functions derived from a Turtle method is called.

To use multiple turtles on a screen one has to use the object-oriented interface.

Note In the following documentation the argument list for functions is given. Methods, of course, have the additional first argument self which is omitted here.

Explanation:

can i have brainliest

What is the output of this program?

numA = 2
numB = 3
if numA == 2 or numB == 2:
print("yes")
elif numA == 2 and numB == 3:
print("no")
Output:

Answers

The output of this program would be letter b (numB=3) because square 2 equals 82 squares and then you get three

Answer:

out is no

Explanation:

just took the quiz

Calculate and express your answer in decimal form.

12⋅17
34⋅200
(0.2)⋅40
(0.25)⋅60

Answers

Answer:

ポイントが欲しいだけなのかわからない

Explanation:

何語を話していますか

Lionel is a director working on a children's video. He's finding it difficult to manage so many young actors. What should Lionel do to free himself for other creative work?

Answers

Answer:

Explanation:

There are two things that Lionel can do in order to free himself. One of which would be to create a program that automates the management process of the young actors, such as scheduling them, payments, rehearsals, etc. Anything that Lionel would have to spend time on to do that does not require face to face communication can be automated, thus saving him time. The second thing that Lionel can do is to limit his workday with the children, therefore leaving more time in the day to pursue other creative work.

Which view is the default for contacts in Outlook 2016?
OBusiness Card
O Card
O Phone
O People

Answers

Answer:

people

Explanation:

Answer:

people

Explanation:

I got it right on the test

Which group of Indians was native to Roanoke and not very friendly?
Croatan
Cherokee
Iroquois
Plain Indians

Answers

Answer:

Croatan I think if I remember it right.

Explanation:

Yep it’s Croatan. Hope this helps.

In the context of website navigation, what is a node?

Answers

Answer:

a point at which the user chooses a certain path.

Coding question. Please help me?

Answers

Answer:

a  for a loop

Explanation:

Martha is typing on her computer. What type of communication is this? A. human-to-human B. human-to-machine C. machine-to-human D. machine-to-machine

Answers

Answer:

Human-to-machine

Explanation:

It is a human typing into a machine.

I hope this helped <3

This is using python.
Assuming all the variables are non-zero.

Which lines of code will assign the discriminant the value b2−4ac? Select 2 options.


discriminant = bb - 4ac

discriminant = b * b - 4 * a * c

discriminant = b ^ 2 - 4ac

discriminant = b ** 2 - 4 * a * c

discriminant = b ^ 2 - 4 * a * c

Answers

Answer:

discriminant = b * b - 4 * a * c

discriminant = b ** 2 - 4 * a * c

Explanation:

The operands are correct and in the right order (for python).

** is the operand for squaring something.

* is the operand for multiplying something.

- is the operand for subtracting something.

Let's take a look at these examples individually.

discriminant = bb - 4ac. You have to use the * sign so the computer understands that you're trying to multiply two objects together.

discriminant = b * b - 4 * a * c. This example works because it's using the * where it's appropriate.

discriminant = b ^ 2 - 4ac. In python we don't use the ^ sign. To use exponents, we use **. Also, there is no * sign in between 4, a, and c.

discriminant =  b ** 2 - 4 * a * c. This example works because it uses the ** and * sign where appropriate.

discriminant = b ^ 2 - 4 * a * c. This example uses the ^ sign and python does not support it.

Which operating system function has a steeper learning curve and can potentially break the system without careful use of its operations?

1. Graphical user interface (GUI)
2. Service management
3. Application management
4. Command line interface (CLI)

Answers

Answer:

4. Command line interface (CLI)

Explanation:

An operating system is a system software pre-installed on a computing device to manage or control software application, computer hardware and user processes.

This ultimately implies that, an operating system acts as an interface or intermediary between the computer end user and the hardware portion of the computer system (computer hardware) in the processing and execution of instructions.

Some examples of an operating system on computers are QNX, Linux, OpenVMS, MacOS, Microsoft windows, IBM, Solaris, VM etc.

A Command line interface (CLI) refers to a text-based user interface that allow users to operate a software application or program, as well as manage and execute operating system functions by typing standard line of commands into the text-based user interface with a real-time response.

Basically, the CLI is solely text-based and as such requires a thorough knowledge and understanding of global commands, as well as administrative privileges in some cases.

Hence, the operating system function which has a steeper learning curve (more difficult to learn) and can potentially break the system without careful use of its operations is the Command line interface (CLI).

Identify the tasks that people can perform using a web browser. View a web page Program a computer Record a video Organize the entire hard drive Shop from a web page Download an MP3 file Upload photographs to an Internet site Search for a web page

Answers

Answer:

1,3,5,6,7,8 on edge2020

Explanation:

Answer: 1, 3, 5, 6, 7, 8

Explanation: got a 100

dash is a set of communication standard using for transferring file information between computers in a network​

Answers

Answer:

protocol

Explanation:

hope this helps.

What additional uses of technology can you see in the workplace? List ways technology impacts
other careers not discussed in this module, such as finance, government, non-profits, and
agriculture.

Answers

People can be making the technology, technology can be used to help solve problems and help further educate people with what they are working on. Technology impacts agriculture because their are certain technology to help farmers farm fast and help water the land without needing a human to do it. Technology can help finance by helping people add and subtract rather than doing in their hand.

True or False: You cannot flip the alignment of a mate while editing a mate.

Answers

It will be False because it can’t flip

A draft has the following:
Plot
Details
Transition Words
Important events in order

Answers

What do you have to do?

if a friend asked you to help her decide what internal sabling system to install in her new house, what kinds of questions wouls you ask her to do? why would you ask those questions?​

Answers

Answer:

Assuming you mean *cabling system*

you could ask:

- The architectural structure of the building, which houses for the cabling installation.

- The function of the cabling installation.

- The configuration of an already installed system (upgrades and retrofits).

others

- The cable and connection products.

- The types of equipment the cabling installation will support -- present and future.

- Customer requirement.

what is displayed as a result of executing the following code segment?


x < - - 2
y < - - X * 4
z < - - X * Y
x < - - X + Y
z < - - z + ( x - y) * 3
DISPLAY ( x + y + z)

select one answer
A - 72
B - 40
C - 8
D - 54​

Answers

The first one I’m not sure it’s quite complicated

How would I copy this image?

There is an image from a scientific research pdf that I would like to use for one of my research papers in school, but I am unable to find out how to copy it and then paste it into my paper.

Thank you for your hep

Answers

Question: How would I copy this image?

Answer: Either screenshot it, or CTRL C ± CTRL V it. To screenshot something, open 'snipping tool' and pull up the PDF, then box in whatever you are trying to copy. You can also reverse image search it to find it somewhere on the web.

Uplifting Note: To you, smiling at someone may mean nothing, but to them, it might be their whole world.

The left and right margins of the page should always be the same.

True
False

Answers

Answer:true

Explanation:

If you need to modify a features in a part created using the Mirror tool, you can make the change in the original feature and the feature on the other side of the mirror plane will be modified automatically.
Select Answer

False

True

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is TRUE.

Because when you are designing something and drawing anything and it is symmetric in shape and half of the part is created, then if you use mirror features, then the other half part will get created automatically.

If you need to modify the features in the original part of the drawing or design then the other side of the mirror plane will be modified automatically.

Because whatever you will make changes in the original part of the design, then the other part that is created by using mirror features will get modified automatically.  

What is a good way to become a game developer without spending a lot of money?

Answers

Answer:

Codes

Explanation:

learn the codes first. when you're already expert, you'll find ways from there.

Other Questions
Which is the role of the gall bladder? PLEASE HURRY I WILL MARK YOU BRAINLYESTA:to provide physical digestionB:to stored the liquid produce by the liverC: to make the liquid that is stored in the liverD: to decrease the chemical digestion Question 1 (1 point)(07.03)How many solutions does the equation 2y+7=5y+7-3y have?aOneObNoneTwoodInfinitely many y = 3x = 2=- x + 6 PLEASE HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Use the following image to answer the question.Flowchart with 6 boxes. Box A sits at the very bottom of the left side of the flowchart, which flows into Box B. Box B flows into Box C. Box C flows into Box D. On the bottom of the right side of the flowchart, Box F flows into Box E, and Box E flows into Box D. Box D is the highest point in the flowchart.Johnny loses his case in an Ohio trial court. He wishes to appeal his case decision. Which section of the diagram represents the next court he could request to hear his case? D A C B List 5 benefits of breastfeeding to mothers and infants. What should a correct sentence look like?a) They took me to the hospital 2- 4 weeks ago.b) They took me to the hospital 2 4 weeks ago.c) They took me to the hospital 2 weeks ago - no, 4 weeks ago.d) They took me to the hospital 2 weeks 4 weeks ago. what us the best way to describe the changes to the characters in the story "thank you ma'am Many cruise lines guarantee satisfaction to their travelers. No matter what happens, they will try to make the people on board happy.What is the meaning of the word satisfaction as it is used in the sentence? aThe varied offering of recreational activities bThe fulfillment of one's expectations or wishes cThe safe return to land after a long journey by boat dThe opportunity to see stars from the upper deck Which statement accurate describes plate tectonics? Is the following a sentence or fragment: they cant. Write a function named power that accepts two parameters containing integer values (x and n, in that order) and recursively calculates and returns the value of x to the nth power. Need help on this Math problem 10. A golf ball is propelled with an initial velocity of 60meters per second at 37 above the horizontal. Thehorizontal component of the golf ball's initial veloc-ity is A______is self-governing andincludes surrounding farmland.A. city-stateB. stateC. zigguratD. city What fraction of a metre is 20cm? find slope please help Ill mark brainliest 15 POINTS URGENT DUE IN 5 MINUTES :(please dont troll.A. A woman hiked on a trail up a mountainShe slowed down as it became more steep. She stopped at the top to take in the view below. Then she continued on the trail and walked down the other side of the mountain.B. A truck driver left a warehouse and drove on a highway at a constant speed before he stopped for lunch. To make up for lost time, he drove faster when he got back on the highway. He unloaded his haul and drove quickly back to the warehouse.C. A woman drove her car up steep bill and stopped at a red lightWhen the light turned green she continued to drive up the rest of the hill until she reached the gas station. She stopped to buy gas and then drove down the other side of the hill towards her office.D. A man ran in a race and accelerated steadily for the first hour. He then continued briefly at a constant pace while he had the lead. When other runners began to catch up he accelerated againHe then continued at a constant high speed. He became overtired and slowed down until he had to completely stop running. "That's what he was supposed to tell you," Mr. Rickey said. "The truth is you are not a candidate for the Brooklyn Brown Dodgers. I've sent for you because I'm interested in you as a candidate for the Brooklyn National League Club. I think you can play in the major leagues. How do you feel about it?" My reactions seemed like some kind of weird mixture churning in a blender. I was thrilled, scared, and excited. I was incredulous. Most of all, I was speechless. "You think you can play for Montreal?" he demanded. I got my tongue back. "Yes," I answered. Which statement best summarizes this excerpt? Rickey decides not to offer Robinson a contract to play for the Dodgers, and Robinson is disappointed. Rickey suggests that Robinson is the best athlete on the Brooklyn Brown Dodgers, and Robinson is grateful. When Rickey trades Robinson to Montreal, Robinson is too frightened to turn down the offer. When Rickey offers Robinson a job in the Major Leagues, Robinson is shocked. if m equals x plus 4 squared and x equals -1 then m equals what number of boys and girls are in the class are in the ratio of 7 : 5 the number of boys is 8 more than the number of girls what is a total class strength?