Eddie creates one-of-a-kind brochures for his customers, and he wants to be able to customize the look of some of the headings in a given brochure. This special type of heading will be used throughout a given document, but it won't be reused in other documents. What type of construct should he create

Answers

Answer 1

Answer:

A template

Explanation:

The type of construct he should create is a Template.

Template: A template is a file that serves as a beginning point for a document that is new.

When you open a template, it is pre-formatted in a way. for instance you might make use of a template in Microsoft Word that is arranged as a business letter, the template would mostly have a space for your address also a name in the left (upper)corner, which is an area for the receivers's address.

Now a little below that on the left site, is an area for the message (body) and after that, is a spot for your signature at the bottom.


Related Questions

1. Human to ____Human____
2. _Human________ to machine
3. Machine to ______Machine
4. _______________ to machine

Answers

Answer:

uhmmm human machine whaT?

Explanation:

Answer:

4 is Machine to machine

The two types of attack on an encryption algorithm are cryptanalysis, based on properties of the encryption algorithm, and _________ which involves trying all possible keys.

Answers

Answer:

Brute force

Explanation:

The two types of attack on an encryption algorithm are cryptanalysis, based on properties of the encryption algorithm, and brute force which involves trying all possible keys.

In brute force attacks there is the issue of using different keys and this is because the attacker is trying to guess the passwords used in the system in order to have it compromised.

Answer:

D.  

triple Data Encryption Standard (DES)

Explanation:

                                       Sincerely : Baby weeb

the variables xp and yp have both been declared as pointers to int, and have been assigned values. write the code to exchange the two int values pointed by xp and yp. (so that after the swap xp still points at the same location, but it now contains the int value originally contained in the location pointed to by yp; and vice versa-- in other words, in this exercise you are swapping the ints, not the pointers). Declare any necessary variables?

Answers

The int values pointed by xp and yp are swapped using a temporary variable as a placeholder. int temp;

temp = *xp;*xp = *yp;*yp = temp;

In order to swap the int values pointed by xp and yp, a temporary variable is necessary to store the original value of *xp while the value of *yp is being assigned to *xp. The value stored in the temporary variable is then assigned to *yp, thus completing the swap. The code for this is as follows: int temp; temp = *xp; *xp = *yp; *yp = temp;

Learn more about programming: https://brainly.com/question/26134656

#SPJ4

Write an application that combines several classes and interfaces.

Answers

Answer:

Explanation:

The following program is written in Java and it combines several classes and an interface in order to save different pet objects and their needed methods and specifications.

import java.util.Scanner;

interface Animal {

   void animalSound(String sound);

   void sleep(int time);

}

public class PetInformation {

   public static void main(String[] args) {

       Scanner scnr = new Scanner(System.in);

       String petName, dogName;

       String dogBreed = "null";

       int petAge, dogAge;

       Pet myPet = new Pet();

       System.out.println("Enter Pet Name:");

       petName = scnr.nextLine();

       System.out.println("Enter Pet Age:");

       petAge = scnr.nextInt();

       Dog myDog = new Dog();

       System.out.println("Enter Dog Name:");

       dogName = scnr.next();

       System.out.println("Enter Dog Age:");

       dogAge = scnr.nextInt();

       scnr.nextLine();

       System.out.println("Enter Dog Breed:");

       dogBreed = scnr.nextLine();

       System.out.println(" ");

       myPet.setName(petName);

       myPet.setAge(petAge);

       myPet.printInfo();

       myDog.setName(dogName);

       myDog.setAge(dogAge);

       myDog.setBreed(dogBreed);

       myDog.printInfo();

       System.out.println(" Breed: " + myDog.getBreed());

   }

}

class Pet implements Animal{

   protected String petName;

   protected int petAge;

   public void setName(String userName) {

       petName = userName;

   }

   public String getName() {

       return petName;

   }

   public void setAge(int userAge) {

       petAge = userAge;

   }

   public int getAge() {

       return petAge;

   }

   public void printInfo() {

       System.out.println("Pet Information: ");

       System.out.println(" Name: " + petName);

       System.out.println(" Age: " + petAge);

   }

   //The at (email symbol) goes before the Override keyword, Brainly detects it as a swearword and wont allow it

   Override

   public void animalSound(String sound) {

       System.out.println(this.petName + " says: " + sound);

   }

//The at (email symbol) goes before the Override keyword, Brainly detects it as a swearword and wont allow it

  Override

   public void sleep(int time) {

       System.out.println(this.petName + " sleeps for " + time + "minutes");

   }

}

class Dog extends Pet {

   private String dogBreed;

   public void setBreed(String userBreed) {

       dogBreed = userBreed;

   }

   public String getBreed() {

       return dogBreed;

   }

}

Write an application that combines several classes and interfaces.

Q18. Evaluate the following Java expression ++z
A. 20
B. 23
C. 24
D. 25
y+z+x++, if x = 3, y = 5, and z = 10.

Q18. Evaluate the following Java expression ++zA. 20B. 23C. 24D. 25y+z+x++, if x = 3, y = 5, and z =

Answers

Answer: C. 25

Explanation:

Should be the answer

You are given an array of integers, each with an unknown number of digits. You are also told the total number of digits of all the integers in the array is n. Provide an algorithm that will sort the array in O(n) time no matter how the digits are distributed among the elements in the array. (e.g. there might be one element with n digits, or n/2 elements with 2 digits, or the elements might be of all different lengths, etc. Be sure to justify in detail the run time of your algorithm.

Answers

Answer:

Explanation:

Since all of the items in the array would be integers sorting them would not be a problem regardless of the difference in integers. O(n) time would be impossible unless the array is already sorted, otherwise, the best runtime we can hope for would be such a method like the one below with a runtime of O(n^2)

static void sortingMethod(int arr[], int n)  

   {  

       int x, y, temp;  

       boolean swapped;  

       for (x = 0; x < n - 1; x++)  

       {  

           swapped = false;  

           for (y = 0; y < n - x - 1; y++)  

           {  

               if (arr[y] > arr[y + 1])  

               {  

                   temp = arr[y];  

                   arr[y] = arr[y + 1];  

                   arr[y + 1] = temp;  

                   swapped = true;  

               }  

           }  

           if (swapped == false)  

               break;  

       }  

   }

Most of the indentured servants in the American colonies were born in. A. Africa B. Asia OC. South America OD. Europe

Answers

Answer:Europe

Explanation: Just took it

in the situation above, what ict trend andy used to connect with his friends and relatives​

Answers

The ICT trend that Andy can use to connect with his friends and relatives​ such that they can maintain face-to-face communication is video Conferencing.

What are ICT trends?

ICT trends refer to those innovations that allow us to communicate and interact with people on a wide scale. There are different situations that would require a person to use ICT trends for interactions.

If Andy has family and friends abroad and wants to keep in touch with them, video conferencing would give him the desired effect.

Learn more about ICT trends here:

https://brainly.com/question/13724249

#SPJ1

In which of the following situations must you stop for a school bus with flashing red lights?

None of the choices are correct.

on a highway that is divided into two separate roadways if you are on the SAME roadway as the school bus

you never have to stop for a school bus as long as you slow down and proceed with caution until you have completely passed it

on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school bus

Answers

The correct answer is:

on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school bus

What happens when a school bus is flashing red lights

When a school bus has its flashing red lights activated and the stop sign extended, it is indicating that students are either boarding or exiting the bus. In most jurisdictions, drivers are required to stop when they are on the opposite side of a divided highway from the school bus. This is to ensure the safety of the students crossing the road.

It is crucial to follow the specific laws and regulations of your local jurisdiction regarding school bus safety, as they may vary.

Learn more about school bus at

https://brainly.com/question/30615345

#SPJ1

You work at a print shop that produces marketing materials, and your manager asks you to install a new printer. The printer comes with two options for drivers. One uses PCL, and the other uses Postscript. Which driver is the best option and why

Answers

Since you work at a print shop that produces marketing materials, and your manager asks you to install a new printer. The drivers that is best is PCL, because it can be used in the office to print physical document while the Postcript can only be used for online document or pdf and since it is office job, PCL is the best.

What is PCL  printer?

PCL use depends on the device. This indicates that certain printed data, typically graphical data like fill areas, underlines, or fonts, is created by the drivers for this language by using the printer hardware. As a result, the print job can be processed by the computer fast and effectively. The production and processing of page data must then be finished by the printer.

Note that If you typically print from "Office" programs in general, use the PCL driver. If you wish to print PDFs more quickly or use professional DTP and graphics tools for the majority of your printing, pick the PostScript driver.

Learn more about printer driver from

https://brainly.com/question/14230829
#SPJ1

xamine the following output:

Reply from 64.78.193.84: bytes=32 time=86ms TTL=115
Reply from 64.78.193.84: bytes=32 time=43ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=47ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=73ms TTL=115
Reply from 64.78.193.84: bytes=32 time=46ms TTL=115

Which of the following utilities produced this output?

Answers

The output provided appears to be from the "ping" utility.

How is this so?

Ping is a network diagnostic   tool used to test the connectivity between two network devices,typically using the Internet Control Message Protocol (ICMP).

In this case, the output shows   the successful replies received from the IP address 64.78.193.84,along with the response time and time-to-live (TTL) value.

Ping is commonly used to troubleshoot   network connectivity issues and measureround-trip times to a specific destination.

Learn more about utilities  at:

https://brainly.com/question/30049978

#SPJ1

write a program that keeps taking integers until the user enters in python

Answers

int main {

//variables

unsigned long num = 0;

std::string phrase = " Please enter your name for confirmation: " ;

std::string name;

//codes

std::cout << phrase;

std::cin>> name;

while ( serial.available() == 0 ) {

num++;

};

if ( serial.avaliable() > 0 ) {

std::cout << " Thank you for your confirmation ";

};

};

Why were Daguerreotype cameras not intended for the general public?

Answers

Answer:

The exposure time was vastly too long to be intended for practical use by photographers.

Explanation:

"The very first daguerreotype cameras could not be used for portraiture, as the exposure time required would have been too long. The cameras were fitted with Chevalier lenses which were 'slow' (about f/14). They projected a sharp and undistorted but dim image onto the plate."

Contain functions that help you monitor and modify images​

Answers

Answer:

Palettes Palettes contain functions that help you monitor and modify images.

Explanation:

your program must be named battleship.java. please read all the steps and look at the example output carefully before you begin. it must work as follows:

Answers

The following is an example of a simple Battleship program in Java. Since you didn't provide context or instructions, you can use this code as a basis for your program.

The required details for Java development in given paragraph

Java coding part:

Import java. util. Scanner ;

Public class Battleship {

public static void main(String[] args) {

// Map initialization

char[ ][ ] Array = {{'''', '''', '', '', ''' ' },

{'''', '', '''', '' , ' '' '},

{' ', ' ', ' ',

''' ', ' '},

{' ', '''' ', '' ' ', ' ', ' '' '},

{' ', '' '' ', '' ', '''' ','' ' }};

// Board ship

int shipRow = (int) (Math.

random() *5);

int shipCol = (int)(Math.random()*5); p>

// Configure the scanner to receive user input

Scanner input = new Scanner(System.in); giri

int rotation = 0;

// cycle the geometry

while (true) {

// stamp array

p>

for ( int iz = 0 ; iz

for ( int jz = 0 ; jz

System .out .print ( board [ i ][j] + " " );

}

System.

out.println();

}

// Devine l'utilisateur

System.out.print("Zeile eingeben: ");

int GuessRow = input.nextInt();

System.

out.print("Inserisci colon: ");

int GuessCol = input.nextInt();

if (guessRow == shipRow && GuessCol == shipCol) {

System.out.println("Congratulations!

Sink a battleship in "+ revs + " revs!");

break;

} else {

// Update the array with an "X " to indicates a missing board. Please try again.

");

}

}

}

}

To learn more about Java development , visit: brainly.com/question/18554491

#SPJ4

order the steps to create a pivotchart

Answers

Answer:

Select any cell in your PivotTable. Clicking a cell in the PivotTable.

From the Insert tab, click the PivotChart command. Clicking the PivotChart command.

The Insert Chart dialog box will appear. Select the desired chart type and layout, then click OK. ...

The PivotChart will appear.

Explanation:

A pivot chart is a way to quickly summarize large amounts of data. These can be created by selecting a cell, then clicking on insert tab, select the insert chart option and then add the data as given.

What is Pivot chart?

A PivotTable is an interactive way to quickly summarize the large amounts of data. A person can use a PivotTable to analyze the numerical data in detail, and answer all the unanticipated questions about the data. A PivotTable is especially designed for querying large amounts of data in many different user-friendly ways.

A Pivot Table is generally used to summarize, sort, re-organize, group, count total, or average data stored in a table. Pivot table allows us to transform columns in the chart into rows and rows into columns.

The steps to create a pivot table include : Select a cell in the PivotTable. Then, on the Insert tab, select the Insert Chart dropdown menu, and then by clicking on any chart option. The chart will appear in the worksheet. Then, select OK.

Learn more about Pivot chart here:

https://brainly.com/question/26745566

#SPJ2

What will happen if you click Clear All in the Tabs dialog box?
Custom tabs are cleared, and default tabs are used.
All custom and default tabs are removed.
Default tabs are cleared, and custom tabs are used.
Tabs are inserted in place of spaces.

What will happen if you click Clear All in the Tabs dialog box?

Answers

If you click on the "Clear All" button in the Tabs dialog box, it will clear all the previously set tab stops.

This means that any default tabs that were set will be removed, and any custom tabs that you may have created will also be deleted.
Once you clear all the tabs, you can start creating new tabs by setting them manually, or you can use the default tabs that are set by your word processor.

The default tabs will be the ones that are set at regular intervals, such as every half-inch or every inch, depending on the software you are using.
It's important to note that clearing all the tabs in the Tabs dialog box will affect the formatting of your document.

If you have already set up your document with custom tabs, you will need to reset them after clearing all the tabs.

This can be time-consuming, so it's important to make sure that you want to clear all the tabs before doing so.
For more question on dialog box

https://brainly.com/question/28813622

#SPJ11

Discuss in detail which search engine you think is most functional for your needs. In your response, be sure to provide examples as to why this browser is most functional to your needs by using either a professional, academic, or personal setting.

Answers

The search engine that i think is most functional for my needs is Go ogle  and it is because when browsing for things in my field, it gives me the result I want as well as good optimization.

What is the most important search engine and why?

Go ogle currently leads the search market, with a startling 88.28% lead over Bing in second place.

It is one that dominates the market globally across all devices, according to statista and those of statcounter figures (in terms of desktop, mobile, and tablet).

Note that it give users the greatest results, the IT giant is said to be always changing as well as working hard to make better or improve the search engine algorithm.

Learn more about search engine from

https://brainly.com/question/671215
#SPJ1

System testing – During this stage, the software design is realized as a set of programs units. Unit testing involves verifying that each unit meets its specificatio

Answers

System testing is a crucial stage where the software design is implemented as a collection of program units.

What is Unit testing?

Unit testing plays a vital role during this phase as it focuses on validating each unit's compliance with its specifications. Unit testing entails testing individual units or components of the software to ensure their functionality, reliability, and correctness.

It involves executing test cases, evaluating inputs and outputs, and verifying if the units perform as expected. By conducting unit testing, developers can identify and rectify any defects or issues within individual units before integrating them into the larger system, promoting overall software quality.

Read more about System testing here:

https://brainly.com/question/29511803

#SPJ1

Jerry can use an
program to restrict information from going out without his permission.

Answers

The answer is predictions

Answer:

ok but what do you want?

Explanation:

ANTIVIRUS or anti cookie software

is what it is i think

Whitney absolutely loves animals, so she is considering a career as a National Park ranger. She clearly has the passion. Provide an example of another factor from above that she should consider and why it might be important before she makes a final decision.

Answers

One important factor that Whitney should consider before making a final decision on a career as a National Park ranger is the physical demands and challenges of the job.

What is the career about?

Working as a National Park ranger often involves spending extended periods of time in remote and rugged wilderness areas, where rangers may need to hike long distances, navigate challenging terrains, and endure harsh weather conditions. Rangers may also be required to perform physically demanding tasks such as search and rescue operations, firefighting, or wildlife management.

It's crucial for Whitney to assess her physical fitness level, endurance, and ability to handle strenuous activities before committing to a career as a National Park ranger. She should also consider any potential health conditions or limitations that may impact her ability to perform the physical requirements of the job.

Read more about career  here:

https://brainly.com/question/6947486

#SPJ1

1.ShoppingBay is an online auction service that requires several reports. Data for each auctioned

item includes an ID number, item description, length of auction in days, and minimum required bid.

Design a flowchart or pseudocode for the following:

-a. A program that accepts data for one auctioned item. Display data for an auction only if the

minimum required bid is more than $250.00

Answers

The pseudocode for the program: Announce factors for the unloaded thing information, counting:

auction_id (numbers)

item_description (string)

auction_length (numbers)

minimum_bid (drift)

Incite the client to enter the auction_id, item_description, auction_length, and minimum_bid.

What is the pseudocode?

The program acknowledges information for one sold thing, counting the auction_id, item_description, auction_length, and minimum_bid. It at that point checks in case the minimum_bid for the unloaded thing is more prominent than or rise to to $250.00.

The pseudocode for the program pronounces factors for the sold thing information and prompts the client to enter the information. At that point it employments an in the event that articulation to check in case the minimum_bid is more noteworthy than or break even with to 250.00.

Learn more about pseudocode  from

https://brainly.com/question/24953880

#SPJ1

1.ShoppingBay is an online auction service that requires several reports. Data for each auctioneditem

_______ tools enable people to connect and exchange ideas.
A) Affective computing.
B) Social media.
C) Debugging
D) Computer forensics.

Answers

Social media is a tool that enables people to connect and exchange ideas. Thus the correct option is B.

What is communication?

Communication is referred to the exchange of information between two individuals in the form of conversation, opinion, suggestion, or advice with the help of medium or direct interaction.

Social media is referred to as a tool of communication that enables people to share their ideas, thoughts, and opinions with a wide network of people and helps them to get information about the events happening in the world.

An internet tool for interaction, information sharing, and social networking is social media. Networking software that connects people around the world is an internet-based technology, strictly understood.

Therefore, option B is appropriate.

Learn more about Communication, here:

https://brainly.com/question/22558440

#SPJ5

Social media is a tool that enables people to connect and exchange ideas. Therefore, the correct answer is option B.

The exchange of information between two people in the form of conversation, opinion, suggestion, or advice with the use of a medium or direct interaction is referred to as communication.

Social media is referred to as a communication tool that enables individuals to communicate their thoughts, ideas, and opinions with a large network of people and assists them in learning about global events.

Social media is an online medium for communication, sharing of knowledge, and social networking. According to the definition of the term, internet-based technology includes networking software that links individuals worldwide.

Therefore, the correct answer is option B.

Learn more about communication here:

brainly.com/question/22558440

#SPJ6

What symptom will be exhibited on an engine equipped with a pneumatic governor system if the cooling fins are clogged? Not Plugged But Clogged?

Answers

Engine speed will rise

// This pseudocode is intended to describe
// computing the price of an item on sale for 10% off
start
input origPrice
discount = price * 0.25
finalPrice = origPrice - discnt
output finalPrice
stop

Answers

Applying given information of a computational language in pseudocode, a code may be written to represent computing the price of an item on sale for 10% off.

What is a pseudocode?

A pseudocode can be considered as a depiction of the steps represented in an algorithm, usually in plain (natural) language.

//This pseudocode is intended to describe

//computing the price of an item on sale for 10% off

START

 input origPrice

 discount = origPrice * 0.10

 finalPrice = origPrice - discount

 output finalPrice

STOP

//This pseudocode is intended to compute the number

//of miles per gallon you get with your car.

START

 input milesTraveled

 input gallonsOfGasUsed

 milesPerGallon = milesTraveled / gallonsOfGasUsed

    //milesPerGallon is computed using division

 output milesPerGallon

    //miles is misspelled, and the P in milesPerGallon should be uppercase

STOP

 //Program should end with stop

//This pseudocode is intended to describe

//computing the per day cost of your rent

//in a 30-day month

START

 input rent

 costPerDay = rent / 30

    // Comment indicates 31-day month

 output costPerDay

    // output should be costPerDay

STOP

Learn more about the pseudocode here :

brainly.com/question/13208346

#SPJ1

Implement it in C++.

The project descriptions are quite general, the way they are executed, designed, and refined in detail is left to you. Remember that the more technical aspects of object-oriented programming (classes, virtual methods, inheritance, abstract classes, operator overloading, constructors, destructors, etc.) you include in your project, the better.

The classes should contain methods allowing to read/set the value of individual fields (day, month, year, hour, minute, etc.), printing and reading in the appropriate format, comparing objects (earlier, later), shifting by a specified number of days, minutes, etc.

Answers

Here's an algorithm for implementing a date and time class in C++ with the mentioned features:

The Algorithm

Create a class called "DateTime" with private member variables for day, month, year, hour, and minute.

Include public methods to read and set the values of individual fields.

Implement methods to print the date and time in the desired format.

Add comparison methods to determine if one DateTime object is earlier or later than another.

Implement methods to shift the DateTime object by a specified number of days, minutes, etc.

Utilize operator overloading to enable intuitive comparisons and arithmetic operations on DateTime objects.

Use constructors and destructors for proper initialization and memory management.

By following this algorithm, you can create a robust and versatile DateTime class in C++.

Read more about algorithm here:

https://brainly.com/question/29674035

#SPJ1

How to use the screen mirroring Samsung TV app

Answers

If you want to show what's on your phone or computer screen on a Samsung TV, you can do it by these steps:

Make sure both your Samsung TV and the thing you want to copy are using the same Wi-Fi.

What is  screen mirroring

The step also includes: To get to the main menu on your Samsung TV, just press the "Home" button on your remote.

The  screen mirroring is Copying or making a duplicate of something. They are repeating each other's words to try to fix the problem between them. This is the way to show what is on your computer or phone screen on another screen by using wireless connection.

Learn more about  screen mirroring from

https://brainly.com/question/31663009

#SPJ1

Which keys can you use to delete
a WordArt?
Answer the following question​

Answers

Answer:

Ctrl + Delete, thats it

Explanation:

i think, ?

you notice that row labels in your spreadsheet are 1,2,3,8,9.Row labels 4 through 7 are missing.what could cause this?

Answers

Answer:

Rows 4 through 7 are hidden

Rows 4 through 7 are checked out to another user

Rows 4 through 7 contain invalid data

Rows 4 through 7 have been deleted

Explanation:

how to implement fibonacci series in assembly language in ripes

Answers

Answer:

thanks so many times but you have the same one that you

The example of the implementation in RISC-V assembly language using Ripes:

What is the  fibonacci series

assembly

.data

result: .asciiz "Fibonacci Series: "

.text

.globl main

main:

 # Initialize registers

 li a0, 0     # F(0)

 li a1, 1     # F(1)

 li t0, 10    # Number of Fibonacci series elements to generate (adjust as needed)

 

 # Print the initial message

 la a5, result

 li a4, 20    # Length of the message

 li a7, 4     # Print system call

 ecall

 

 # Generate and print the Fibonacci series

 li t1, 2     # Loop counter starts at 2 (F(0) and F(1) already initialized)

loop:

 add t2, a0, a1   # Calculate the current Fibonacci number

 mv a0, a1        # Move previous number (F(n-1)) to a0

 mv a1, t2        # Move current number (F(n)) to a1

 # Print the Fibonacci number

 li a7, 1         # Print integer system call

 ecall

 addi t1, t1, 1   # Increment the loop counter

 blt t1, t0, loop # Loop until desired number of Fibonacci series elements

 # Exit program

 li a7, 10        # Exit system call

 ecall

Read more about  fibonacci series here:

https://brainly.com/question/29764204

#SPJ2

Other Questions
.3.) A survey of a random parking lot showed that out of 85 cars parked there, 35 are black. At a=0.05, can we claim that 40% of the cars on the road are black? Test using a hypothesis test. 4.) A certain treatment facility claims that its patients are cured after 45 days. A study of 150 Which of the following characteristics inform anthropologists as to the bipedal status of the australopithecines?a. evidence of their heel-strike and toe-off locomotion b. evidence of a convergent hallux (big toe) c. evidence of lumbar lordosis d. all of these answers are correct What is an important limiting factor of lakes and ponds, which have standing water, but is not a limiting factor of rivers and streams, which have running water?A. WaterB. ShelterC. OxygenD. Sunlight Which expression is equivalent to -16 - 7?A. -16 + 7B. -16 + (-7)C. 16 + (-7)D. 16 + 7 what concept dominated thinking about sentencing throughout much of the 20th century? A pool can be filled by one pipe in 3 hours and by a second pipe in 5 hours. How long will it take using both pipes to fillthe pool? Suppose that y varies directly as the square root of x, and that y = 49 when x = 49. What is y when x = 128? Round your answer to two decimal places if necessary true/false. crime prevention through environmental design (cpted) applies law enforcement strategies, physical design, and investor participation to build and maintain urban neighborhoods. Which gives the best example of stream of consciousness?OA. The hardest part of year is the winter, when the rain doesn't stop.OB. I'd had quite enough of this rain, and booked myself a ticket home.OC. I said but he didn't hear, but that's the rain, the rain will do it everytime.D. Rain fell, heavy and gray, for what seemed like six straight months. Follow 2018 rule Question: Danny owns an electronics outlet in Dallas. This year he paid $600 to register for a four-day course in management in Chicago. Danny paid $800 in airfare and $1,000 for five nights lodging. After the course, Danny spent the last day sightseeing. During the trip, Danny also paid $140 a day for meals and $80 a day for a rental car. What amount of these travel expenditures may Danny deduct as business expenses? In May 2007, the ___________________ required all federal agencies to create a breach notification plan. This instruction was issued in response to a large data breach at the Department of Veterans Affairs. What is Kate Chopins purpose in The Awakening? Think about how the title provides a clue. Check the two best choices. How to find angles C and D. Thanks. use the data below to construct the arms ratio on each of the five trading days. (do not round intermediate calculations. round your answers to 3 decimal places.) stocks advancing advancing volume stocks declining declining volume monday 1,580 690,503 1,300 544,997 tuesday 2,018 903,360 1,318 442,665 wednesday 1,586 623,494 1,308 719,695 thursday 2,496 1,102,338 538 173,106 friday 1,544 509,034 1,460 498,460mondaytuesdaywednesdaythursdayfridayarms ratio Why are ravens black in color, according to the legend of the scarecrow?. The exchange rate for pound and ghana is 1 = Ghana Cedis 2. Hotel take one- tenth commission for exchanging foreign surreng. If Mrs kukrudu exchange 20 at the sunrise hold how many cedis does she receive? PLEASE HELP THIS IS WORTH 13 POINTS Rising action description of charlottes web John is saving of his allowance each week for a wireless headphones that he wants to buy. After 6 weeks he has$87 saved for the headsetwhat is John's weekly allowance?How much each week does John saves for the headset he wants to buy? Page 1:Question 3 (1 point)How old does Gabriel turn at the beginning of the story?3INO 14451O 12011| 13 )Question 4 (1 point)What does Gabriel hope his cousin Tink will do