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

(03.04 MC) While working in a group, two members are not getting along. You ask each one what is happening, and they both say they don't know why the other person is mad. You bring the two members together, so they can discuss the issue. What should be their first step in this conflict resolution? O Agree upon the problem Brainstorm possible solutions O Identify the issue O Negotiate a solution​

Answers

Answer:

Agree upon the problem Brainstorm possible

Explanation:

Answer:

Is C, Identify the issue

Explanation:

I got it right on my test.

A bottom-up approach is better for smaller problems.

Answers

Answer:

The correct answer is true.

Sorry for late answer.

Hope this helps.

Explanation:

I got it right on edge.

Answer:

True

Explanation:

Complete the following statement by selecting all possible answers.
A router sends data

to the correct computer.

to all computers.

where it should go.

based on the data’s destination.

in a loop.

Answers

Answer:

to the correct computer

where it should go

based on the data's destination

Explanation:

took the assignment on edg :)

Answer:

to the correct computer

where it should go

based on the data's destination

Explanation:

What statement best describes percentage values in CSS?
It's the fraction of the value that came before it.
O It's the smallest controllable element on the screen.
O It's always the width of an indent.
It's a value that is relative to the width of its HTML element or to the page.

Answers

Answer:

D.It's a value that is relative to the width of its HTML element or to the page.

Explanation:

Hope it's right

Answer:

D

Explanation:

In a paragraph of no less than 125 words Compare and contrast paraphrasing and summarising

Answers

Answer:

Paraphrasing is stating what someone else has said in different terms, making it easier to explain.

Summarising is explaining something that has happened while removing information that is not crucial to the explanation.

Hope this helps

For the second one just answer what game engines are please, you don't have to explain.

Answers

Answer:

game architecture, game framework or gameframe

Conclusion for primary memory

Answers

Answer:

primary memory is also called main memory and also it stores information in the computer

Explanation:

Select the correct answer.
Maggle is preparing a business report. Which types of keys will she use to type out words and numbers?
O A alphanumeric keys
OB. navigation keys
C.
function keys
OD. control keys

Answers

Answer:

A. Alphanumerical key

Explanation:

pl please give me points

steps to run a Q-BASIC programme

Answers

Answer:

Cls

Read

Input

Print

END

What type of scaling is each of these?
horizontal or vertical
adding a server:

adding memory to a server:

Answers

Answer:

Adding a server: Horizontal Adding memory to a server: Vertical

Explanation:

Answer:

adding a server: horizontal

adding memory to a server: vertical

Explanation:

edge 2022

Which option in a Task element within Outlook indicates that the task is scheduled and will be completed on a later
date?
O Waiting on someone else
O In Progress
O Not started
O Deferred

Answers

Answer:

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

Explanation:

The correct option for this question is Deferred.

When you create the task in outlook and scheduled and that will be completed on a later date shown is Deferred. Because deferring is an act of postponing something that was due soon and you have scheduled to do it later.

The other options are not correct because:

when you add task not started set as "Not started".    

When you change the progress percentage to something other than 0%, set it to "in progress".  When you change the progress percentage to 100%, set it as "completed".  Waiting on someone else means a task is waiting for others to get completed.  

Deferred is the task element of the Outlook that indicates that the task is schedules and will be completed later. Thus, option D. is correct.

What is deferred option?

The deferred option is the option that allows the user to postpone the task that is schedules in the current date to any other future date. This option is present in the task element of the Outlook.

Therefore, option D. Deferred is correct.

Learn more about deferred option, here:

https://brainly.com/question/13482025

#SPJ5

Select the correct text in the passage.
Select the sentence that is not the correct use of technology in parenting.
Technology has helped parents to access a vast information resource due to the presence of the internet. They can show a range of education
material like nursery rhymes, stories, scientific concepts, and so on conveniently on their smartphones. Teachers can coordinate with the
parents about the child's progress due to smartphones and various applications on it. Some parents have replaced the customary practice of
reading a bedtime story to children with a television show of the child's choice.
Reset
Next

Answers

Answer:

some parents have replaced the customary practice of reading a bedtime story to childern with a television show of the child's choice

Explanation:

(Java)Convert the QuartsToGallons program to an interactive application. Instead of assigning a value to the number of quarts, accept the value from the user as input.

class QuartsToGallonsInteractive
{
public static void main(String[] args)
{
// Modify the code below
final int QUARTS_IN_GALLON=4;
int quartsNeeded=18;
int gallonsNeeded; int extraQuartsNeeded; gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON; extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;
System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");

}
}

Answers

import java.util.Scanner;

public class QuartsToGallonsInteractive

{

public static void main(String[] args)

{

Scanner scan = new Scanner(System.in);

final int QUARTS_IN_GALLON=4;

int quartsNeeded=0;

System.out.println("How many quarts do you need?");

quartsNeeded = scan.nextInt();

int gallonsNeeded, extraQuartsNeeded;

gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON;  

extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;

System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");

}

}

I hope this helps!

To modify a program is to rewrite the program in another way.

In order to make the program an interactive program, we have to remove the following program statement:

final int QUARTS_IN_GALLON=4;

The above program statement assigns 4 to the variable QUARTS_IN_GALLON.

This means that:

Each time the program is run, the value of QUARTS_IN_GALLON is always 4.

Next, we replace the statement with:

Scanner input = new Scanner(System.in)

int QUARTS_IN_GALLON;

QUARTS_IN_GALLON = input.nextInt();

So, the complete modified program is:

class QuartsToGallonsInteractive{

public static void main(String[] args){

Scanner input = new Scanner(System.in)

int QUARTS_IN_GALLON;

QUARTS_IN_GALLON = input.nextInt();

int quartsNeeded=18;

int gallonsNeeded; int extraQuartsNeeded; gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON; extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;

System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");

}

}

Read more about interactive program at

https://brainly.com/question/15683939

A local bank has just one branch. It sets up a peer-to-peer network for all devices on the system. The bank would like to be able to have one technician administer the entire network from his location outside the bank without having to go to the bank each time there is a problem. Will this be possible for the technician?

Answers

Answer: C. It will not work because it needs to use a server in a central location to allow for the remote access they want.

Explanation:

The options are:

A. It will not work because it is not possible to have the technician administer from one single location.

B. It will work as long as a LAN network is established to facilitate the communication between devices.

C. It will not work because it needs to use a server in a central location to allow for the remote access they want.

D. It will work if it uses a WAN network to bring in all of the LAN networks to one central location.

A peer-to-peer network occurs when computer's are connected together and hence share resources are connected and share resources.

In the scenario in the question, the technician cannot administer the entire network from his location outside the bank. The technician will need to go to the bank whenever a problem occurs. This is due to the fact that there I need for a server that is in a central location in order to allow for the remote access they want.

Answer:

It will not work because it needs to use a server in a central location to allow for the remote access they want.

Explanation:



Place the steps in order for creating a Custom Search Folder in Outlook 2016.

Open the Custom Search
Choose your criteria and
Select folder in pane to
Click the Folder tab
Click the New Search
Folder
Folder button.
click OK
execute the search.

Answers

Answer:

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

Explanation:

The correct order for creating Custom Search Folder in Outlook 2016 is given below:

Click the Folder tabClick the New Search  FolderOpen the Custom SearchChoose your criteria and  Select folder in pane toClick ok to execute the search.

Answer:

Step #1: Click the Folder tab.

Step #2: Click the New Search Folder button.

Step #3: Open the Custom Search Folder.

Step #4: Choose your criteria and click OK.

Step #5: Select folder in pane to execute the search.

See the attached image if you still don't believe me.

Explanation:

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.

Which of the following is the BEST reason to use cash for making purchases?

Answers

You could get a better deal.

Companies get charged when someone makes a card purchase. So if you pay in cash you could get a better deal. Like when you are buying a car, you can get a better deal because you are paying upfront and on the spot so they wont have to worry about you missing paymenyd

Who is the person that creates fun and challenging levels and works closely with environment modelers & animators?

Answers

Answer:

An animation modeler creates the CG character, environment, and hard surface models of an animated feature in three dimensions. They work closely with art directors to be sure that all models conform to the intended design and visual style of the animated film.

Explanation:

i hope this is what u mean lolsss

А ________ provides an easy way for workers to Interact with thelr computers.

System Call

Command Prompt

FAT

GUI

Answers

THE ANSEER TO THIS IS GUI

Read the following scenarios carefully and select a suitable storage device for each situation. Make sure to justify your choice by talking about the characteristics of your chosen storage device such as Capacity, Speed, Portability, Durability and Reliability.

(a) “A military contractor has been asked to produce a new all-terrain tablet PC which will be used by the armed forces when out in combat situations. Cost is not an option, lives could well depend on how reliable this tablet PC is under extreme conditions.” [6](write a whole paragraphy)
I will be giving out brainliest to best answer

Answers

Answer:

SSD drive or sd card

Explanation:

Optical wouldn't have enough data and could get easily damaged by the movement of the armed forces.Hard Drives would be insanely bad as if you even slightly moved while it were moving you would corrupt data. SSD doesn't get damaged as easily as these two and can hold a sufficient amount of data for its size.

Storage device are the hardware that are used to store huge amount of data. Storage device like SD cards and SSD cards can be used in military operations as these are hard and cannot break easily and store huge data.

What is Storage device?

Storage device are any type of computing hardware that are used for storing, porting or extracting data. Storage devices can hold and store information both temporarily and permanently. They may be internal or external to a computer device.

SD cards are the best device used for storing big data files and playing them back. SSDs on the other hand, are optimized for running the operating system partition of a computer. One device has a simpler role while the other needs to be smarter and more adaptable. These are the most compatible storage devices which can be used for military functions.

Learn more about Storage device here:

https://brainly.com/question/11599772

#SPJ2

PLEASE HELP ASAP!!!!!!!!!!!







Is this statement true or false?

A type of image you can use in your document is called clip art.


true


false

Answers

Answer:

True

Explanation:

its true i just took the test

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:

Nonverbal communication skills can promote teamwork. True False

Answers

Answer:

its true

Explanation:

i just got done with this assignment.

Answer:

tre

Explanation:

Janelle wants to research information about a local politician's recent public appearances. Which tool should she use for this?
A printed newspaper with a local news section.
A digital library that has a section on politics.
A physical library where the politician has appeared.
Search engines filtered to only show news sites.

Answers

Answer:

Search engines filtered to only show news sites.

Explanation:

A printed newspaper could have come from any time

A digital library barely gets updated

I'm pretty sure I saw those same books 3 years ago

Yeah you get the jig

How many 1000-Watt lights can be plugged into a standard 120-Volt, 15-Amp outlet? (Hint: W/V=A)

Answers

Answer:

The answer is 1

Explanation:

Mario was surprised that the box that was supposed to tell him how many words he used in his document did not appear after the spelling and grammar check of his document was complete.

Which step did Mario forget to do in Word’s Options dialog box?

Click the Display tab.
Click the Custom Dictionaries button.
Click the Grammar checking option.
Click the Show the readability statistics option.

Answers

Answer:The Answer is d Click the Show the readability statistics option

Explanation:

Answer:

D. Click the Show the readability statistics option.

Explanation:

correct on edge

what does the network access server (NSA) do?

Answers

network access server (NAS) is a computer server that enables an independent service provider (ISP) to provide connected customers with Internet access. A network access server has interfaces to both the local telecommunication service provider such as the phone company and to the Internet backbone

the auxiliary device used to store large volume of data and program for future is called​

Answers

Answer:

Auxiliary memory units are among computer peripheral equipment. They trade slower access rates for greater storage capacity and data stability. Auxiliary memory holds programs and data for future use, and, because it is nonvolatile (like ROM), it is used to store inactive programs and to archive data.

Explanation:

hope the answer was helpful...

Edhesive 9.10 Question 3

terms = [“Bandwidth”, “Hierarchy”, “IPv6”, “Software”, “Firewall”, “Cybersecurity”, “Lists”, “Program”, “Logic”, “Reliability”]

Answers

Answer:

your on unit 9 of edhesive?

Explanation:

def swap (ar, a, b):

   temp = ar[a]

   ar[a] = ar[b]

   ar[b] = temp

terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]

print(terms)

for i in range(len(terms)):

   for j in (range(i, len(terms))):

       if(terms[i] > terms[j]):

           swap(terms, j, i)

print(terms)

I got a 100% of edhesive

You wrote a program to find the factorial of a number using recursion. 4! =

Answers

Answer:

24

Explanation:

Anything "factorial" is the result of multiplying the number by itself and all numbers below it, so:

4! = 4 × 3 × 2 × 1 = 24

There's no other info for this question so I assume you just wanted the answer, but as an example of a program here's a function that would work it out for you by using recursion in javascript, to use this you would call factorial(4) like at the bottom:

function factorial(num) {

 if (num < 0)  

       return -1;

 else if (num == 0)  

     return 1;

 else {

     return (num * factorial(num - 1));

 }

}

factorial(4);

Other Questions
70 Marketing Dynamics .. .. : : . . : Part 4: Be Your Own Leader Leaders on a Top Secret Mission On December 6, 2011, a woman walked into a Michigan K-Mart and paid off someone else's layaway just in time for the holidays. That one act of kindness, completed in total secrecy, has taken on a life of its own. People have gone into stores with as much as $20,000 in their hands to anonymously pay off the layaways of others. Leaders give back, and they often do without wanting or needing recognition. A leader will always be willing to recognize others, share in other's successes, and help whenever and wherever they see a need. True leaders will do without expecting anything in return." As a leader, think of something you could do for someone else. You do not have to spend any money if you do not want to. Giving back is rarely about money. It can be as simple as leaving a note recognizing someone for the work he or she has done. ;. 1. Create your own secret mission. Decide what you can do as a leader to give back. Maybe you will volunteer at a local shelter or write a note to all of your teachers and place it in their school : mailboxes. There are so many things you could do; narrowing it down to just one thing might be the most difficult part. Fill in the following information about your secret mission. i' ., . . .. . . ..... ....... . Mission title: Why I chose this mission: Why I believe it is important for leaders to give back: - . . NR22 W Date(s) of my mission:_ Resources I will need: - S. A W. W W Others I will need to include for the mission to succeed: mm / : VY. W : : : : TUTTE 1. . '. . 2. Once you have completed your mission, complete a self-reflection. Include other ways that, as a leader, you can give back in the future. Self-reflection: I.-.... YST - - - - Viet w Futr thoughts and plans: . What are the major features of the US economic system? A train travels 245 km in 6.25 hours. What is the speed of the train?Group of answer choices53.2 km/hr1531.25 km/hr39.2 m/h39.2 km/hr Help me guys please with this question Evaluate the expression |13|-|-5| Which of the following could be a value of x in the following inequality?-5(x - 2) > 4+4(x + 6) what is the mood of the poem the government driver Question 17 of 20 :Select the best answer for the question.17. During the Han Dynasty, their trade goods were sent along the silk roaO A. Phoenicia.O B. the Assyrian Empire.C. Imperial Rome.D. the Persian Empire.Mark for review (Will be highlighted on the review page) A bottlenose dolphin is 10 feet below sea level. Then it begins to dive at a rate of 9 feet per second. What is the equation of the line that represents its elevation, y, after x seconds?A. y = 9x 10B. y = -9x 10C. y = 9x + 10D. y = -9x + 10 HOW is this article organized? What is the MOST LIKELY reason why the author chosethis organizational structure?(A) by comparing successes and fallures; to help Illustrate how Goodall was ableto handle difficulties(B)by key event; to showcase major turning points in Goodall's research thathave had lasting impacts(C)by chronological order; to highlight the ways that Goodall grew and maturedalong with her research(D)by cause and effect; to explain the significant effects Goodall has had onscience and chimpanzees SaExpo Milano 2015 was visited by 22.2 million people. It is expected that Expo 2020 Dubai willbe visited by 25 million people. Find the percent of change. Simplify.710+210-10 Using the accounting equation (A = L + OE) calculate the amount of equity the company has if your assets are worth $10,000 total, while your debt is $5,000. Toward the end of the process, a billis Erika spends about 4 hours each week practicing her violin. How much time would Erika spend practicing her violin for an entire year? I WILL MARK YOU!!! PLZ HELP!The width and length of a rectangle (in feet) are consecutive odd integers. If the length is increased by 9 feet, the area of the resulting rectangle is 80 square feet. What is the area of the original rectangle?553525 Suppose Z3 = 24 - 22. Which quadrant contains z3?O quadrant 1O quadrant 11O quadrant IIIquadrant IV On a conveyor belt, there can only be two boxes moving at a time. The total weight of the boxes cannot be more than 300 pounds. Let x and y represent the weights of the two boxes on the conveyer belt.a. Write an inequality that describes the weight limitation in terms of x and y.b. Two boxes are to be placed on the conveyor below. The first box weighs 175 pounds. What is the maximum weight of the second box? Definition: Middle colony that gave settlers a voice through a representative assembly Is f(x) a function?please help