The bleed is the portion of an entity that extends beyond the margins of a page to account for changes in the output process.
What is output of data?Raw data refers to the process and technology that enables data to be evaluated under different circumstances and updated by the researcher as needed. Any econometric analysis yields data as a result that must be examined.
Does production imply outcome?This can be easily understood by considering outcomes as the outcomes and outputs as the activities supporting the intended outcomes. For example, "increased client happiness" could be a business outcome. A responsive online store might be a product that can assist in achieving this.
To know more about output visit:
https://brainly.com/question/13670177
#SPJ4
Using a movie or documentary (fictional or real), explain what the production phase of the motion picture might look like. What events might take place? What might the different people on the production team do? Make sure to include information about all major team members as well as actors/actresses. Your response should be detailed and should integrate the information from the entire lesson.
Answer:
PRODUCER
This person is essentially the group leader and is responsible for managing the production from start to finish. The producer develops the project from the initial idea, makes sure the script is finalized, arranges the financing and manages the production team that makes the film
The director is primarily responsible for overseeing the shooting and assembly of a film. While the director might be compared to a novel's author as a film's primary visionary, he or she would not be able to make the film without the help of numerous other artists and technicians.
In fact, the notion of the director as an author is misleading because it assumes the director, like an author, does everything. A director works at the center of film production, but is inextricably linked with dozens of other people who get the job done together.
SCREENWRITER
While the dialogue in a film may seem natural to the viewer, a writer carefully crafts it; however, the screenwriter does far more than provide dialogue for the actors. He or she also shapes the sequence of events in a film to ensure that one scene transitions to the next so that the story will unfold logically and in an interesting way.
Like the producer, the screenwriter's role is generally overlooked by the movie-going public, yet is essential to the completion of any film. If there is no script, there is no movie.
PRODUCTION DESIGNER
Before one inch of film is shot, the production designer is the first artist to translate the script into visual form. He or she creates a series of storyboards that serve as the film's first draft.
A storyboard is a series of sketches on panels that shows the visual progression of the story from one scene to the next. Creating this sketch of the film on storyboards also ensures the visual continuity of the film from start to finish. Storyboards serve as the director's visual guide throughout the production and will be a template to follow during the editing process.
PRODUCTION DESIGNER
Before one inch of film is shot, the production designer is the first artist to translate the script into visual form. He or she creates a series of storyboards that serve as the film's first draft.
A storyboard is a series of sketches on panels that shows the visual progression of the story from one scene to the next. Creating this sketch of the film on storyboards also ensures the visual continuity of the film from start to finish. Storyboards serve as the director's visual guide throughout the production and will be a template to follow during the editing process.
Explanation:
Display all 3-digit automorphic no.s.
Guys I need help!!!!!!
I WILL GIVE THE BRAINLIEST ❤️
Answer:
hope my answer helps
Explanation:
Automorphic Number
Given a number N, the task is to check whether the number is Automorphic number or not. A number is called Automorphic number if and only if its square ends in the same digits as the number itself.
Examples :
Input : N = 76
Output : Automorphic
Explanation: As 76*76 = 5776
Input : N = 25
Output : Automorphic
As 25*25 = 625
Input : N = 7
Output : Not Automorphic
As 7*7 = 49
Explanation:
Automorphic Number
Given a number N, The method to check whether the numbers are Automorphic number or not.
A number is called Automorphic number only if its square ends in the same digits as the number itself.
Examples :
N = 6
Automorphic
Explaination :
As 6×6 = 36
N = 76
Automorphic
•As 76×76 = 5776
N = 25
Automorphic
•As 25×25 = 625
If a report contains financial data that you want to analyze, you can export the report as a(n) _____ file.
Answer:
A CSV file is the correct answer.
Given two objects represented by the tuples (22, 1, 42, 10) and (20, 0, 36, 8):
(a) compute the euclidean distance between the two objects.
(b) compute the manhattan distance between the two objects.
(c) compute the minkowski distance between the two objects, using q = 3.
(d) compute the supremum distance between the two objects.
Answer:
Given,
P = (22, 1, 42, 10)
Q = (20, 0, 36, 8)
a. Formula for Euclidean Distance :
distance = ((p1-q1)^2 + (p2-q2)^2 + ... + (pn-qn)^2)^(1/2)
Now,
distance = ( (22-20)^2 + (1-0)^2 + (42 - 36)^2 + (10-8)^2) ) ^(1/2)
=( (2)^2 + (1)^2 + (6)^2 + (2)^2 ) ) ^(1/2)
=(4+1+36+4)^(1/2)
=45^(1/2)
Distance = 6.7082
b.Manhattan distance :
d = |x1 - x2| + |y1 - y2|
d = |22- 20| + |1 - 0|
d = |2| + |1|
Explanation:
Write a program, which will take 20, inputs from the user and find how many
odd and even numbers are there.
Pseudocode & Python
Answer:
user_input = [int(input()) for i in range(20)]
even = []
odd = []
for i in user_input:
if i%2:
even.append(i)
else:
odd.append(i)
print("odd : ", len(odd), "even : ", len(even))
Explanation:
The above code is written in python :
Using a list comprehension we obtain a list of 20 values from the user and store in the variable user_input.
Two empty list are defined, even and odd which is created to store even and odd values.
A for loop is used to evaluate through the numbers in user_input. Even values leave no remainder when Divided by 2 and are appended to the even list while those those leave a raunder are automatically odd values. The elements each list are counted using the len function and are displayed using the print statement.
ning and e-Publishing: Mastery Test
1
Select the correct answer.
Which statement best describes desktop publishing?
O A.
a process to publish drawings and photographs on different media with a laser printer
B.
a process to design and produce publications, with text and images, on computers
OC.
a process to design logos and drawings with a graphics program
OD
a process to publish and distribute text and graphics digitally over various networks
Reset
Next
Answer:
B
Explanation:
I dont no if it is right but B has the things you would use for desktop publishing
Answer:
the answer is B.
a process to design and produce publications, with text and images, on computers
Explanation:
What is greywater? A. waste water contaminated by human waste such as feces B. fresh water running out of taps and sinks C. waste water unpolluted by human waste such as feces D. salty water running out of taps and sinks E. purified water used for drinking purposes
Answer:
B. fresh water running out of taps and sinks
Explanation:
Greywater is simply the water that is created from activities such as showering, bathing or doing laundry.
Tcp is a connection-oriented protocol that uses a three-way handshake to establish a connection to a system port. computer 1 sends a syn packet to computer 2. which packet does computer 2 send back?
TCP as an connection-oriented protocol ]uses a three-way handshake to establish a connection to a system port and the packet that does the above i and 2 are: SYN/ACK
What is SYN and ACK?Client requests connection is one that is often done by sending SYN kind of (synchronize) message to the server.
Note that the Server is one that acknowledges by transmitting SYN-ACK (synchronize-acknowledge) message back to its client.
Hence, the Client often responds using an ACK ( which is an acknowledge) message, and the connection is said to be set up or established.
Hence, TCP as an connection-oriented protocol ]uses a three-way handshake to establish a connection to a system port and the packet that does the above i and 2 are: SYN/ACK
Learn more about TCP from
https://brainly.com/question/27742993
#SPJ1
which of the following is used to copy and paste information from excel to multiple customers?
The process of copying and pasting information from Excel to multiple customers can be done by using the copy and paste functions within Excel. To do this, you can first select the cells containing the information you want to copy, and then right-click on the cells and choose "Copy" or use the shortcut "Ctrl + C".
Then, go to the location where you want to paste the information, such as an email or a document, and right-click on the location and choose "Paste" or use the shortcut "Ctrl + V". This will paste the information from Excel to the desired location. However, if you are looking to send the same information to multiple customers, it would be more efficient to use a mail merge function within Excel or a separate program that allows for bulk email sending.
To know more about Copy visit:
https://brainly.com/question/8315969
#SPJ11
Who plays Rblx?? What do yall play?
Answer:
i play rblx
Explanation:
queenloveadriana (main acc)
AdiosLoca (alt)
Azazel_Iblis (the acc I'll use for my YT channel)
I also play Fn, CofD, Destiny, 2k, Mortal Combat, but my PS4 broke and I'm waiting to get my PS5 that I ordered
Answer:
i do
Explanation:
A protocol is a set of _____, especially in the formatting of data.
Answer:
instructions.
Explanation:
I think it’s instructions because it could also be a set of rules or instructions. But it it’s either a set of rules or instructions because, a protocol is pretty much a set of instructions which tell you what to do. Kind of like how the laws are supposed to help keep people civilized and also to help ensure that as many people as possible are being stopped when they do something bad.
Augmented reality ____ the real-world environment; virtual reality _____ the real-world environment.
Answer:
Virtual reality (VR) immerses users in a fully artificial digital environment. Augmented reality (AR) overlays virtual objects on the real-world environment. Mixed reality (MR) not just overlays but anchors virtual objects to the real world.
Explanation:
Directions: In at least 10 complete sentences, persuade me into believing your favorite movie is the best movie ever. (No more than 15 sentences)
Explanation:
In my personal opinion, the movie called " Soul Surfers " one of the most inspiring movies out there. Why, you may ask? First of all, Bethany Hamilton has found such a joy and thrill for surfer. Sadly, every surfers worst nightmare was a reality to Bethany. While her and a couple others we surfing, a shark obruptly bit Bethany Hamilton's arm off. You would think her carrier would be over, but she simply denied the odds of that happening. She got on her surf board and started practicing again! She began just as good as she was before the accident. And that is why " Soul Surfer " is the best movie ever!
the compact disc drive it belongs to a.input b.output c.storage device
Answer:
c.storage device
Explanation:
Nowadays, there are a variety of ways to edit, revise, and modify your photography endeavors beyond the darkroom (although the darkroom is still a viable option). Evaluate the various options that exist with media, technique, and process for editing, revising, and modifying your images. Why might someone choose one technique over another? Provide an example to help illustrate your answer.
You have been asked to create an exhibition level series of photographs for your graduate-level photography class. Money is not an issue and there is no budget; however, it is imperative that your images are put together in a way that protects them from contaminants or discoloration and are displayed in a way that is appropriate for a very high-end gallery where customers will be looking to pay top dollar for the very best art and photography. How would you prepare your images for such an event? Explain what factors you would need to consider in order to accomplish this and identify how you will prepare and install these photographs, including what the process would involve.
A classmate in your photography class missed several days of class, including the day that the instructor explained the artistic statement. Your classmate asks you to help fill them in so that they can create an artistic statement for an upcoming project. How would you explain this concept and the purpose behind it? What would you tell them to include in their statement? Explain.
Imagine that you are planning to display 30 photographs at an upcoming art exhibit. In an effort to stay organized, you want to create a loose budget estimation. You decide that the first step in doing this is listing the main areas that will need to be included in your budget. Create a list of at least of the three main parts of your budget and provide one example of an item that would fall under each area.
Choose a photograph that you have personally taken or that you have found online. Evaluate and explain what type of mounting, matting, and framing would best complement and highlight this image and why. Describe each aspect that you would use (matte or shiny mat, wood frame, metal frame, etc.) and provide a copy of your image with your answer.
Answer:
I'm not a photographer, but I think someone might choose one technique over another because
1. They like it better
- feeling
- mood
2. They are pro at it???
Explanation:
I don't know, maybe search your question up online or something. Or ask someone on Quora, cuz Quora is more diverse.
Explanation:
Some of the tools to use to edit, revise, and modify your photography is the use of Image editing tool such as:
Adobe Lightroom. Adobe Photoshop, etc.What is image editor?This is known to be a kind of graphic or photo software, that is often used in photography when working on enhancing an image.
Conclusively, Note that image editor often edit and alters an image, picture, etc. and a common tool is the use of Adobe Photoshop.
Learn more about photography from
https://brainly.com/question/25821700
#SPJ2
Binary digits can represent the state of an electrical charge. How
many different states of an electrical charge can binary digits
represent?
Find dy/dx and d2y/dx2. x = t2 + 5, y = t2 + 5t dy dx = Correct: Your answer is correct. d2y dx2 = Correct: Your answer is correct. For which values of t is the curve concave upward? (Enter your answer using interval notation.) Changed: Your submitted answer was incorrect. Your current answer has not been submitted.
Answer:
The answer to this question can be defined as follows:
Explanation:
Given value:
\(x = t^2 + 5......(1)\\\\ y = t^2 + 5t........(2)\)
To find:
\(\bold {\frac{dy}{dx} \ \ \ and\ \ \ \frac{d^2y}{dx^2} = ?}\)
Differentiate the above equation:
equation 1:
\(\frac{dx}{dt}= 2t.......(1)\\\)
equation 2:
\(\frac{dy}{dt}= 2t+5\)
Formula:
\(\frac{dy}{dx}= \frac{\frac{dy}{dt}}{\frac{dx}{dt}}\\\\\)
\(\boxed{\bold{\frac{dy}{dx}=\frac{2t+5}{2t}}}\)
To calculate the \(\bold{\frac{d^2y}{dx^2}}\) we Differentiate the above equation but before that first solve the equation:
Equation:
\(\frac{dy}{dx}=\frac{2t+5}{2t}\)
\(=\frac{2t}{2t}+\frac{5}{2t}\\\\= 1+\frac{5}{2t}\\\\=1+\frac{5}{2} t^{-1} \\\)
Formula:
\(\bold{\frac{d}{dx} \ x^n = nx^{n-1}}\)
\(\frac{dy^2}{dx^2}= 0+\frac{5}{2} (-1 t^{-2})\\\\\)
\(= -\frac{5}{2} t^{-2}\\\\= -\frac{5}{2 t^2} \\\\\)
\(\boxed{\bold{\frac{d^2y}{dx^2}=-\frac{5}{2t^2}}}\)
Answer:
d2y dx2
Explanation:
Write a program in java to input N numbers from the user in a Single Dimensional Array .Now, display only those numbers that are palindrome
Using the knowledge of computational language in JAVA it is possible to write a code that input N numbers from the user in a Single Dimensional Array .
Writting the code:class GFG {
// Function to reverse a number n
static int reverse(int n)
{
int d = 0, s = 0;
while (n > 0) {
d = n % 10;
s = s * 10 + d;
n = n / 10;
}
return s;
}
// Function to check if a number n is
// palindrome
static boolean isPalin(int n)
{
// If n is equal to the reverse of n
// it is a palindrome
return n == reverse(n);
}
// Function to calculate sum of all array
// elements which are palindrome
static int sumOfArray(int[] arr, int n)
{
int s = 0;
for (int i = 0; i < n; i++) {
if ((arr[i] > 10) && isPalin(arr[i])) {
// summation of all palindrome numbers
// present in array
s += arr[i];
}
}
return s;
}
// Driver Code
public static void main(String[] args)
{
int n = 6;
int[] arr = { 12, 313, 11, 44, 9, 1 };
System.out.println(sumOfArray(arr, n));
}
}
See more about JAVA at brainly.com/question/12975450
#SPJ1
Read each question below. Then, using the drop-down menus, decide if it represents the purpose, construction, or support aspect of choosing a website host.
Will the website be built by a programmer at a company?
What type of content will be on the website?
Will the website be used to share family pictures or as a professional site for posting news?
Will customers be making secure transactions on the website?
How extensive of a control panel, or location of login and website control, will be needed?
Answer:
1) Construction
2) Purpose
3) Purpose
4) Support
5) Support
Explanation:
Will the website be built by a programmer at a company? construction
What type of content will be on the website? purpose
Will the website be used to share family pictures or as a professional site for posting news? purpose
Will customers be making secure transactions on the website? support
How extensive of a control panel, or location of login and website control, will be needed? support
OAmalOHopeO
Answer:
1) Construction
2) Purpose
3) Purpose
4) Support
5) Construction
Explanation:
You are required to write a program which will convert a date range consisting of two
dates formatted as DD-MM-YYYY into a more readable format. The friendly format should
use the actual month names instead of numbers (eg. February instead of 02) and ordinal
dates instead of cardinal (eg. 3rd instead of 03). For example 12-11-2020 to 12-11-2022
would read: 12th of November 2020 to 12th of November 2022.
Do not display information that is redundant or that could be easily inferred by the
user: if the date range ends in less than a year from when it begins, then it is not
necessary to display the ending year.
Also, if the date range begins in the current year (i.e. it is currently the year 2022) and
ends within one year, then it is not necesary to display the year at the beginning of the
friendly range. If the range ends in the same month that it begins, then do not display
the ending year or month.
Rules:
1. Your program should be able to handle errors such as incomplete data ranges, date
ranges in incorrect order, invalid dates (eg. 13 for month value), or empty values
2. Dates must be readable as how they were entered
The program which will convert a date range consisting of two dates formatted as DD-MM-YYYY into a more readable format will be:
from datetime import datetime
def convert_date_range(start_date, end_date):
start_date = datetime.strptime(start_date, '%d-%m-%Y')
end_date = datetime.strptime(end_date, '%d-%m-%Y')
return f"{start_date.strftime('%B %d, %Y')} - {end_date.strftime('%B %d, %Y')}"
# Example usage:
start_date = '01-04-2022'
end_date = '30-04-2022'
print(convert_date_range(start_date, end_date)) # Output: April 01, 2022 - April 30, 2022
How to explain the programIn this code example, we first import the datetime module, which provides useful functions for working with dates and times in Python. Then, we define a function called convert_date_range that takes in two arguments, start_date and end_date, which represent the start and end dates of a range.
Inside the function, we use the datetime.strptime() method to parse the input dates into datetime objects, using the %d-%m-%Y format string to specify the expected date format. Then, we use the strftime() method to format the datetime objects into a more readable string format, using the %B %d, %Y format string to produce a string like "April 01, 2022".
Learn more about program on:
https://brainly.com/question/1538272
#SPJ1
In a DTP project, Fiona is looking for a way to make a page layout attractive to readers. Help Fiona pick the correct word to complete the sentence.
You’ll need a(n) _____ to capture the attention of your audience. It can be an illustration, a photograph, a block of bold text, or a quote in a column of white space.
You’ll need a(n) a block of bold text to capture the attention of your audience.
How do you make text bold in pages?First one need to select Format and then Font and then Bold.
Note that by bolding a selected text, it can capture the mind of the people to the page layout.
Hence, You’ll need a(n) a block of bold text to capture the attention of your audience.
Learn more about page layout from
https://brainly.com/question/12129748
#SPJ1
how many orbiting satellites are requested to provide uninterrupted around the clock GPS service around the world
a. 28
b.24
c.31
d.12
e.48
in access sql which operator could you use to list all fields from a customer table where the city field is madison, middleton , or belleville
In Access SQL, you can use "IN" operator in to list all fields from a customer table where the city field is Madison, Middleton, or Belleville.
1. Start with the SELECT statement to specify the fields you want to retrieve. Use an asterisk (*) to retrieve all fields.
2. Use the FROM statement to specify the table you are querying, in this case, the customer table.
3. Use the WHERE clause to filter records based on a condition. In this case, you want to filter records where the city field has one of the specified values.
4. Use the IN operator to list the desired values (Madison, Middleton, or Belleville) within parentheses.
Your SQL query should look like this:
```
SELECT *
FROM customer
WHERE city IN ('Madison', 'Middleton', 'Belleville');
```
This query will return all fields from the customer table where the city field has one of the specified values.
Learn more about SQL:
https://brainly.com/question/31663284
#SPJ11
Imagine that you just received a summer job working for a computer repair shop. One of your first tasks is to take apart a computer that is having trouble and identify the problem. Identify and describe several main components that you will find once you open the computer. Do you think all computing devices have these components? Once you fix the problem and put the computer back together again, how will software help the computer turn on?
Identify main components of a computer, discuss their presence in computing devices, and describe how software helps the computer turn on after a repair.
What is computer?
A computer is an electronic device that can be programmed to accept and process data into information according to a set of instructions. It consists of hardware components such as the CPU, memory, storage devices, input/output devices, and software components such as the operating system and applications.
As a computer repair technician, some main components to identify when opening a computer are the motherboard, CPU, RAM, hard drive, power supply, and cooling system; not all computing devices have the same components. Software such as the BIOS and operating system will help the computer turn on and function properly.
To know more about software visit:
brainly.com/question/1022352
#SPJ1
HYUNDAI Motors is considering producing cars in Incheon with production function Q=10KL
2
, where Q is number of cars per week, K is units of capital measured in automated assembly-lines, and L is thousands of workers per week. SAMSUNG Motors is considering producing cars in Daegu with production function Q=10 K
2
L. A) Both HYUNDAI and SAMSUNG must pay ∀600,000,000 per unit of labor ( W600,000 per worker x1,000 workers) and W1,200,000,000 per unit of capital, where W600,000 is the weekly wage and W1,200,000,000 is the weekly interest cost to finance an automated assembly line. How many units of labor and how many units of capital would each firm use to produce 1280 cars? (You may round your answer to the nearest 1,000 workers and the nearest automated assembly line.) B) How much would it cost HYUNDAI to produce 1280 cars? What would the cost be per car? C) How much would it cost SAMSUNG to produce 1280 cars? What would the cost be per car? D) While the firms are studying their options, BOK doubles interest rates up so that the cost of capital rises to W2,400,000,000. The Incheon economy is booming, and HYUNDAI finds that it must pay $1,200,000 per worker per week. Daegu's economy is less vibrant, and wage per worker stay at W600,000 per week. How many units of labor and how many units of capital will each firm now envision needing to produce 1280 cars? What are each firm's prospective costs per car?
A)19,261 units of labor and 32 units of capital. B)The cost of HYUNDAI is V38,020,800,000, resulting in a cost per car of V29,690,625. C)25,398 units of labor and 40 units of capital. D)V52,463,200,000
If the interest rates double and Hyundai has to pay $1,200,000 per worker per week while Samsung's wage per worker remains at W600,000 per week, Hyundai would require around 9,219 units of labor and 45 units of capital. The prospective cost for Hyundai per car would increase to V41,570,313. Samsung, in this scenario, would need approximately 12,199 units of labor and 50 units of capital. The prospective cost for Samsung per car would be V44,385,938.
A) To find out the number of units of labor and capital required by Hyundai and Samsung to produce 1280 cars, we can use their respective production functions. For Hyundai, Q = 10KL^2, where Q is the number of cars, K is the capital (automated assembly lines), and L is the labor. By substituting Q = 1280, we can solve for K and L. Similarly, for Samsung, Q = 10K^2L. By substituting Q = 1280, we can solve for K and L. Rounding the values to the nearest thousand workers and automated assembly lines gives us the final results.
B) To calculate the cost for Hyundai to produce 1280 cars, we multiply the number of units of labor by the wage per worker and the number of units of capital by the interest cost per assembly line. Adding these costs together gives us the total cost for Hyundai. Dividing the total cost by the number of cars (1280) provides us with the cost per car.
C) The process for calculating the cost for Samsung is similar to that of Hyundai. We multiply the number of units of labor by the wage per worker and the number of units of capital by the interest cost per assembly line. Adding these costs together gives us the total cost for Samsung. Dividing the total cost by the number of cars (1280) provides us with the cost per car.D) In this scenario, the interest rates double, and Hyundai has to pay $1,200,000 per worker per week, while Samsung's wage per worker remains at W600,000 per week. We repeat the calculations using the new wage and interest rate values to determine the number of units of labor and capital required by each firm. The prospective cost per car is then calculated using the same method as in parts B and C, but with the updated costs.
To learn more about HYUNDAI visit:
brainly.com/question/30762678
#SPJ11
importance of program in computer
Answer:
it allows a person to represent machine language in human readable format
Explanation:
since computers work with numbers, programming allows a person to represent machine language in human readable format. this reduces the chances of introducing errors and wasted time in debugging and correcting mistakes
which of the following security administration tasks involves developing schedules and procedures to ensure all it infrastructure components are backed up with current data? group of answer choices monitor log files deploy controls to meet encryption requirements enforce physical security standards implement backup policies
The security administration task that involves developing schedules and procedures to ensure all IT infrastructure components are backed up with current data is Implement backup policies.The correct answer is option C.
Implementing backup policies is a critical aspect of security administration. It involves establishing guidelines and protocols to ensure that regular backups of data and systems are performed. By creating schedules and procedures, administrators can ensure that backups are conducted consistently and in a timely manner.
An effective backup policy involves identifying the critical data and infrastructure components that need to be backed up, determining the frequency of backups (e.g., daily, weekly, monthly), and establishing the retention period for backup data. It also includes defining the backup methods and technologies to be used, such as incremental or full backups, onsite or offsite storage, and cloud-based backup solutions.
Implementing backup policies helps safeguard against data loss caused by various factors such as hardware failures, natural disasters, human errors, or cyberattacks. It ensures that in the event of a data breach or system failure, organizations can restore their systems and data to a previous state and resume operations with minimal disruption.
In conclusion, implementing backup policies is an essential security administration task that involves developing schedules and procedures to ensure all IT infrastructure components are backed up with current data, protecting organizations from potential data loss and enabling efficient recovery in case of adverse events.
For more such questions data,Click on
https://brainly.com/question/179886
#SPJ8
The probable question may be:
Which of the following security administration tasks involves developing schedules and procedures to ensure all IT infrastructure components are backed up with current data?
A) Enforce physical security standards
B) Deploy controls to meet encryption requirements
C) Implement backup policies
D) Monitor log files
How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas
The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.
How did Native Americans gain from the long cattle drives?When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.
Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.
There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.
Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.
Learn more about cattle drives from
https://brainly.com/question/16118067
#SPJ1
does anyone or has anyone ever done it?? please help it’s for like skills!
Answer:
is this mathmatics
Explanation:
What will you see on the next line? >>> int(6.5)
Answer:
6
Explanation:
The int functions founds down to the nearest whole number, which in this case would be 6.
Answer:
6
Explanation: