The new game kept everyone busy for hours. (Complement)

Answers

Answer 1

The complement in the sentence is "kept everyone busy for hours." It describes the action of the game and its effect on the people.

In grammar, a complement is a word or group of words that completes the meaning of the predicate of a sentence.

In this sentence, the predicate is "kept," which means that the game caused everyone to remain occupied for a long time.

"Kept everyone busy for hours" is the complement that provides more information about the action of the game and how it affected the people.

It is an essential part of the sentence, as without it, the sentence would be incomplete and vague.

To know more about predicate visit:

brainly.com/question/11535401

#SPJ11


Related Questions

The vendor of your accounting software recently released an update that you downloaded and installed on your Windows system. Unfortunately, now your accounting software crashes when launched. Which action can you take to get your system running properly as quickly as possible without losing your accounting files

Answers

To resolve the issue of your accounting software crashing after installing an update, you can take the following steps:

1. Restart your computer: Sometimes, a simple restart can fix software issues. Close any open programs, restart your Windows system, and try launching the accounting software again.

2. Check for compatibility: Ensure that the updated version of the accounting software is compatible with your Windows system. Visit the vendor's website or contact their support team to verify compatibility requirements.

3. Update drivers: Outdated or incompatible drivers can cause software crashes. Update your device drivers by going to the manufacturer's website or using a driver update tool.

4. Reinstall the software: Uninstall the current version of the accounting software, including any associated files. Then, download the latest version from the vendor's website and reinstall it. Make sure to follow the installation instructions carefully.

5. Restore from backup: If reinstalling the software doesn't resolve the issue, restore your accounting files from a backup that you have previously created. This will ensure that your data is preserved while you troubleshoot the software problem.

If none of these steps solve the issue, consider reaching out to the vendor's support team for further assistance. Provide them with specific details about the problem, including any error messages you receive, to help them diagnose and resolve the issue more effectively.

To know more about software crashing, visit:

https://brainly.com/question/31625938

#SPJ11

What are users unable to do in the user interface of PowerPoint 2016?

Add additional tabs on the ribbon.
Customize the default tabs on the ribbon.
Fully customize newly added tabs on the ribbon.
Use global options to customize newly added tabs on the ribbon.

Answers

Answer:

B. Customize the default tabs on the ribbon

The other answer is in correct

Explanation:

I took the unit test review and got 100%

edge 2020

it’s customize, just took the test :)

Horizontal and vertical flips are often used to create ___.
(Hint: one word, starts with the letter R, 3 syllables) HELP PLEASE !! PHOTOSHOP CLASS !!

Answers

Answer:

Rotation of an image

Explanation:

The correct answer is -  Rotation of an image

Reason -

When you rotate an object, it moves left or right around an axis and keeps the same face toward you.

When you flip an object, the object turns over, either vertically or horizontally, so that the object is now a mirror image.

Please answer in Java:
a) Identify duplicate numbers and count of their occurrences in a given array. e.g. [1,2,3,2,4,5,1,2] will yield 1:2, 2:3
b) Identify an element in an array that is present more than half of the size of the array. e.g. [1,3,3,5,3,6,3,7,3] will yield 3 as that number occurred 5 times which is more than half of the size of this sample array
c) Write a program that identifies if a given string is actually a number. Acceptable numbers are positive integers (e.g. +20), negative integers (e.g. -20) and floats. (e.g. 1.04)

Answers

Here, we provided Java code snippets to solve three different problems such as duplicate numbers and their occurence etc.

a) Here is a Java code snippet to identify duplicate numbers and count their occurrences in a given array:

java

import java.util.HashMap;

import java.util.Map;

public class DuplicateNumbers {

   public static void main(String[] args) {

       int[] array = {1, 2, 3, 2, 4, 5, 1, 2};

       // Create a map to store number-count pairs

       Map<Integer, Integer> numberCountMap = new HashMap<>();

       // Iterate over the array

       for (int number : array) {

           // Check if the number already exists in the map

           if (numberCountMap.containsKey(number)) {

               // If it exists, increment the count by 1

               int count = numberCountMap.get(number);

               numberCountMap.put(number, count + 1);

           } else {

               // If it doesn't exist, add the number to the map with count 1

               numberCountMap.put(number, 1);

           }

       }

       // Print the duplicate numbers and their occurrences

       for (Map.Entry<Integer, Integer> entry : numberCountMap.entrySet()) {

           if (entry.getValue() > 1) {

               System.out.println(entry.getKey() + ":" + entry.getValue());

           }

       }

   }

}

b) Here is a Java code snippet to identify an element in an array that is present more than half of the size of the array:

java

public class MajorityElement {

   public static void main(String[] args) {

       int[] array = {1, 3, 3, 5, 3, 6, 3, 7, 3};

       int majorityElement = findMajorityElement(array);

       System.out.println("Majority Element: " + majorityElement);

   }

   private static int findMajorityElement(int[] array) {

       int majorityCount = array.length / 2;

       // Create a map to store number-count pairs

       Map<Integer, Integer> numberCountMap = new HashMap<>();

       // Iterate over the array

       for (int number : array) {

           // Check if the number already exists in the map

           if (numberCountMap.containsKey(number)) {

               // If it exists, increment the count by 1

               int count = numberCountMap.get(number);

               count++;

               numberCountMap.put(number, count);

               // Check if the count is greater than the majority count

               if (count > majorityCount) {

                   return number;

               }

           } else {

               // If it doesn't exist, add the number to the map with count 1

               numberCountMap.put(number, 1);

           }

       }

       return -1; // No majority element found

   }

}

c) Here is a Java program to identify if a given string is actually a number:

java

public class NumberChecker {

   public static void main(String[] args) {

       String input = "-20.5";

       if (isNumber(input)) {

           System.out.println("The input string is a valid number.");

       } else {

           System.out.println("The input string is not a valid number.");

       }

   }

   private static boolean isNumber(String input) {

       try {

           // Try parsing the input as a float

           Float.parseFloat(input);

           return true;

       } catch (NumberFormatException e) {

           return false;

       }

   }

}

The first code snippet identifies duplicate numbers and counts their occurrences in a given array. The second code snippet finds an element in an array that is present more than half of the size of the array.

To know more about Java Code, visit

https://brainly.com/question/5326314

#SPJ11

For questions 1-3, consider the following code:
x = int (input ("Enter a number: "))
if x 1 = 7:
print("A")
if x >= 10:
print("B")
if x < 10:
print("C")
if x % 2 == 0:
print("D")

For questions 1-3, consider the following code:x = int (input ("Enter a number: "))if x 1 = 7:print("A")if

Answers

Answer:

A

Explanation:

You work for a public relations (PR) firm and communicate regularly with the internal team and the clients on a PR campaign. You need to quickly send and receive professional messages that may contain text files and short media. These messages need to be accessible at any time of the day and in different time zones, and they should be able to reach all members (internal and external) relatively inexpensively. Which communication channel would best suit this purpose?

Answers

Answer:

You Need To Quickly Send And Receive Professional Messages That May Contain Text Files And Short Media. These Messages Need To Be Accessible At Any Time Of The Day And In Different ... You work for a public relations (PR) firm and communicate regularly with the internal team and the clients on a PR campaign.

Explanation:

Email would likely be the best communication channel to meet these requirements. Once an email is sent, it broadcasts across servers and arrives at the recipient’s/recipients’ mailbox(es) for access at the receiving party’s/(ies’) convenience. Email is also able to have attachments, and as such, will allow for text files and smaller media files (audio, video, or otherwise) to be attached and accessed easily.

Arrange the steps to create a database in the correct order.
Save the database.
Determine field names.
Access the relevant DBMS.
Analyze the tables you require.
Define data types for fields.
+
+

Arrange the steps to create a database in the correct order. Save the database.Determine field names.Access

Answers

Answer:

Analyze the the tables you require

Determine field names

Access the relevant DBMS

Define data types for fields

Save the database

For database first analyze the table required, determine field names, access the relevant DBMS, define data types for fields, and finally, save it.

What is a database?

A database is a well-organized collection of documents or data that is typically stored electronically in a computer system. A database management system is usually in charge of a database (DBMS).

Database software simplifies data management by allowing users to save data in a structured format and then access it.

It typically has a graphical interface to assist in the creation and management of data, and in some cases, users can build their own databases using database software.

A database system stores vital business data: the data, when analyzed, becomes valuable information about a company and aids in decision-making.

Analyze the required table, determine field names, access the relevant DBMS, define data types for fields, and save the database.

Thus, this is order for steps to create a database in the correct order.

For more details regarding database, visit:

https://brainly.com/question/6447559

#SPJ5

A deque is a type of collection, but it’s not automatically available when you open IDLE. What is missing that allows you to use the deque class?

Answers

Answer:

In order to use the 'deque' class, you will need to import it from the collections module. You can do this by adding the following line at the beginning of your code:

from collections import deque

This will allow you to create deque objects and use their methods.

For example:

from collections import deque

my_deque = deque()

my_deque.append(1)

my_deque.appendleft(2)

print(my_deque)  # prints deque([2, 1])

Explanation:

b) State two factors that may cause interference of the WiFi signal for his network

Answers

Answer:

Ping

Mbps Speed (Download or Upload)

Brainliest Please.

Tell me if im right please!!

Some real-world constraints can be defined as SQL assertions and enforced onto the database state.
a. true
b. false

Answers

The answer is a. True. However, it is important to note that while SQL assertions can be used to enforce constraints onto a database, there may be other real-world constraints that cannot be expressed as SQL assertions and may require additional measures to enforce.

Additionally, enforcing constraints through SQL assertions alone may not be enough to ensure data integrity and security, and may require a combination of measures such as data validation, access controls, and encryption.

The statement "Some real-world constraints can be defined as SQL assertions and enforced onto the database state" is:

a. true

SQL assertions allow you to enforce real-world constraints on the database state by defining conditions that must be met for any transaction to be committed. This ensures data integrity and consistency within the database.

to know more about databases here:

brainly.com/question/30634903

#SPJ11

a is a strategy in which firms share some of their resources and capabilities to create economies of scope and is similar to the business-level horizontal complementary alliance. group of answer choices synergistic strategic alliance diversifying strategic alliance joint venture alliance netwrok

Answers

The strategy in which firms share some of their resources and capabilities to create economies of scope and is similar to the business-level horizontal complementary alliance is called the synergistic strategic alliance.

Synergistic Strategic Alliance

A synergistic strategic alliance is a partnership where two or more companies combine their resources and expertise to produce a better outcome than they would have done individually. A synergistic strategic alliance is similar to the business-level horizontal complementary alliance, where firms combine to achieve economies of scope, to acquire new customers and markets, or to compete more effectively against larger competitors. The companies involved in the partnership share risks, rewards, and resources to achieve their business objectives together, creating greater value than they would have done individually. This type of strategic alliance provides several advantages, including lower costs, reduced risk, increased market penetration, access to new technology and knowledge, and increased competitive advantage.

know more about Synergistic Strategic Alliance.

https://brainly.com/question/32808714

#SPJ11

virtual conections with science and technology. Explain , what are being revealed and what are being concealed​

Answers

Some people believe that there is a spiritual connection between science and technology. They believe that science is a way of understanding the natural world, and that technology is a way of using that knowledge to improve the human condition. Others believe that science and technology are two separate disciplines, and that there is no spiritual connection between them.

What is technology?
Technology is the use of knowledge in a specific, repeatable manner to achieve useful aims. The outcome of such an effort may also be referred to as technology. Technology is widely used in daily life, as well as in the fields of science, industry, communication, and transportation. Society has changed as a result of numerous technological advances. The earliest known technology is indeed the stone tool, which was employed in the prehistoric past. This was followed by the use of fire, which helped fuel the Ice Age development of language and the expansion of the human brain. The Bronze Age wheel's development paved the way for longer journeys and the development of more sophisticated devices.

To learn more about technology
https://brainly.com/question/25110079
#SPJ13

This question has two parts : 1. List two conditions required for price discrimination to take place. No need to explain, just list two conditions separtely. 2. How do income effect influence work hours when wage increases? Be specific and write your answer in one line or maximum two lines.

Answers

Keep in mind that rapid prototyping is a process that uses the original design to create a model of a part or a product. 3D printing is the common name for rapid prototyping.

Accounting's Business Entity Assumption is a business entity assumption. It is a term used to allude to proclaiming the detachment of each and every monetary record of the business from any of the monetary records of its proprietors or that of different organizations.

At the end of the day, we accept that the business has its own character which is unique in relation to that of the proprietor or different organizations.

Learn more about Accounting Principle on:

brainly.com/question/17095465

#SPJ4

Data analytics tools and methods fall into the following categories—descriptive, predictive, prescriptive, and.

Answers

Data analytics tools and methods are necessary for businesses to analyze their data, gain insights, and make informed decisions.

Descriptive, predictive, and prescriptive are three of the four main categories of data analytics methods, but what is the fourth category? The fourth category of data analytics methods is called "diagnostic."Diagnostic analytics is the method of discovering why a problem happened by examining data and investigating its root cause. It is used to identify patterns in data, diagnose issues, and find potential solutions.

Diagnostic analytics is an essential tool for any business looking to improve its operations, as it allows companies to identify problems before they become critical issues. In summary, the four categories of data analytics methods are descriptive, predictive, prescriptive, and diagnostic. These methods are used to help businesses gain insights from their data and make informed decisions based on their findings.

To know more about methods visit:

https://brainly.com/question/5082157

#SPJ11

Hyperlinks can only point to webpages.

True or False

Answers

Answer:

I believe thats false

What is the difference between printer and printing
Give three things a printer can print​

Answers

Answer:

A printer is software that converts documents from computers into instructions for a print device to print on paper

Explanation:

it can print paper , carton , cards

Anyone know how I can fix my code so that it is the same as the example shown on the left side? (I am using Python)

Anyone know how I can fix my code so that it is the same as the example shown on the left side? (I am

Answers

Below is a description of how to modify the code so that it resembles the example on the left.

What is Python and why it is used?

Below is a description of how to change the code to match the example on the left. Python is a popular programming language for computers that is used to create software and websites, automate processes, and analyze data. Python is a general-purpose language, which means that it may be used to make a wide range of programs and isn't tailored for any particular issues. The object-oriented, dynamically semantic, interpreted programming language known as Python was developed by Guido van Rossum. In 1991, it first became available. Python is a pun on the British comic group Monty Python, and it is intended to be both straightforward and funny.

Which language is Python?

The object-oriented, interpretive programming language Python is interactive. Classes, dynamic data types at a very high level, exceptions, modules, and dynamic typing are all included. In addition to object-oriented programming, it also supports functional and procedural programming.

To know more about Python visit:

https://brainly.com/question/18502436

#SPJ1

A _____________ is designed for a individual user.
This is for Keyboarding Applicaions
Plz help :D

Answers

Answer:

i don't know it sorry

Explanation:

What two factors increase the effectiveness of a disinfectant on microorganisms?
- Concentration of disinfectant
- Time of exposure
- Material used to apply disinfectant
- Corrosiveness of the disinfectant

Answers

The two factors that increase the effectiveness of a disinfectant on microorganisms are the concentration of the disinfectant and the time of exposure.

The concentration of the disinfectant refers to the amount of the disinfectant present in the solution used for disinfection. Higher concentrations of the disinfectant can effectively kill a larger number of microorganisms. The time of exposure refers to the amount of time that the disinfectant is in contact with the microorganisms. Longer exposure times can ensure that all microorganisms are effectively killed. The material used to apply the disinfectant and the corrosiveness of the disinfectant can also have an impact on the effectiveness of the disinfectant, but they are not the primary factors that increase effectiveness.

learn more about disinfectant on microorganisms here:

https://brainly.com/question/30439973

#SPJ11

What mathematical functions can be solved while using python?

Answers

Answer:

Once the script is loaded into a Python code, it gives the ability to solve problems of: Nonlinear equations Differential and algebraic equations

Explanation:

Once the script is loaded into a Python code, it gives the ability to solve problems of: Nonlinear equations Differential and algebraic equations

help plz

1. Write a function to return the larger of two numbers entered from two user inputted values, where the user inputs are entered after the displays of “First Entry =” and “Second Entry = ”. The numbers should be decimal values (not just integers).



2. Write a function to return the word that is first alphabetically from two user inputted text entries, where the user inputs that text by entering their own words after the displays of “First Entry =“ and “Second Entry =“. Remember that you can use the operators with strings. (You can assume that the user only inputs lower case words.)

Answers

1.

first = float(input("First Entry = "))

second = float(input("Second Entry = "))

def func(num1, num2):

   return max(num1, num2)

print(func(first, second))

2.

first = input("First Entry = ")

second = input("Second Entry = ")

def func(word1, word2):

   return sorted([word1,word2])[0]

print(func(first, second))

I hope this helps!

In this exercise we have to use the knowledge of computational language in python to write the following code:

The code can be found in the attached image.

That way, to find it more easily we have the code like:

First code:

first = float(input("First Entry = "))

second = float(input("Second Entry = "))

def func(num1, num2):

  return max(num1, num2)

print(func(first, second))

Second code:

first = input("First Entry = ")

second = input("Second Entry = ")

def func(word1, word2):

  return sorted([word1,word2])[0]

print(func(first, second))

See more about python at brainly.com/question/26104476

help plz1. Write a function to return the larger of two numbers entered from two user inputted values,
help plz1. Write a function to return the larger of two numbers entered from two user inputted values,

smart tv has _____ intergrated with it

Answers

Answer:

an operating system

Explanation:

a new employee is attempting to configure a cell phone to connect to the email server of the company. which port number should be selected when using the pop3 protocol to access messages stored on the email server?

Answers

The port number that should be selected when using the POP3 protocol to access messages stored on the email server is port 110.

POP3 (Post Office Protocol version 3) is a protocol used to retrieve email messages from an email server. When configuring a cell phone to connect to the email server of a company using the POP3 protocol, port 110 should be selected. This port number is used to establish a connection between the email client and the email server.

Once the connection is established, the email client sends requests to the server to retrieve email messages. It is important to note that POP3 is an unencrypted protocol, so any communication between the email client and server is transmitted in plain text.

To ensure the security of email messages, it is recommended to use an encrypted protocol such as Secure Sockets Layer (SSL) or Transport Layer Security (TLS).

For more questions like POP3 click the link below:

https://brainly.com/question/13567877

#SPJ11

What of the following are a result of writing programs as one long sequence structure? O Duplicated code makes the program faster to write. O Having a long sequence of statements makes it easy to find errors. O If parts of the duplicated code have to be corrected, the correction has to be made many times. O It does not make use of decision structures.

Answers

As a result of coding programs as one lengthy sequence structure, if portions of the duplicated code need to be corrected, the correction must be made numerous times.

What in programming is a sequence structure?

A sequence structure consists of one or more subdiagrams, also known as frames, that run one after the other. The execution order of nodes is determined by data dependency within each frame of a sequence structure, much like in the rest of the block diagram.

What kind of loop structure keeps the code repeating?

When a condition is no longer met, a while loop runs a block of code an undetermined number of times. A block of code is repeated a predetermined number of times in a for loop, on the other hand.

To know more about programs  visit:-

https://brainly.com/question/14010931

#SPJ1

Derek is designing a logo for a toy store. He wants to use a font that looks like handwritten letters. Which typeface should he use?
A.
old style
B.
geometric sans-serifs
C.
transitional and modern
D.
humanist sans
E.
slab serifs

Answers

The type of typeface that Derek should use is option D: humanist sans.

What is an typeface?

A typeface is known to be a kind of a design tool that is used for lettering and it is one that is made up of variations in regards to its size, weight (e.g. bold), slope and others.

What defines a humanist font?

The “Humanist” or “Old Style” is known to be a kind of a historical classification that is used for any typefaces that have its inspiration from Roman lettering and also that of the Carolingian minuscule as it often  include forms that looks like the stroke of a pen.

Since Derek is designing a logo for a toy store. He wants to use a font that looks like handwritten letters, The type of typeface that Derek should use is option D: humanist sans.

Learn more about typeface from

https://brainly.com/question/11216613

#SPJ1

which aws service provides the capability to view end-to-end performance metrics and troubleshoot distributed applications? a. aws cloud9 b. aws codestar c. aws cloud map d. aws x-ray

Answers

AWS X-Ray helps developers troubleshoot and analyze distributed applications by providing end-to-end performance metrics of the application components.

AWS X-Ray is a service that helps developers analyze and debug distributed applications. It provides an end-to-end view of requests as they flow through a distributed application, showing the performance of each component and allowing developers to identify bottlenecks or errors in their applications.

With AWS X-Ray, developers can trace requests from beginning to end, identify performance issues, and analyze the data to improve their applications. It provides a visual representation of the application's architecture, highlighting issues and bottlenecks that can be investigated further.

Using X-Ray, developers can gain deep insights into how their applications are performing, even in complex distributed architectures, and they can quickly identify and resolve issues that may be affecting their applications.

AWS X-Ray integrates with many other AWS services and can provide detailed information on the performance of AWS resources used in an application, such as Amazon EC2 instances, Amazon API Gateway, and AWS Lambda functions. It also supports a variety of programming languages and frameworks, including Java, .NET, Node.js, and Ruby.

learn more about AWS here:

https://brainly.com/question/30176139

#SPJ4

You are connected to your network's Cisco router, and need to verify the route table. What command should you enter?
a.show ip route
b.route print
c.route -a
d.show route-table

Answers

The command to verify the route table on a Cisco router is "show ip route."

In order to verify the route table on a Cisco router, you should enter the command "show ip route." This command provides information about the current routing table of the router, displaying the routing entries, including the destination network, next-hop address, administrative distance, and metric. By examining the route table, you can determine how traffic will be routed within the network and identify any potential issues or inconsistencies.

The "show ip route" command is specific to Cisco routers and is widely used in troubleshooting and network management tasks. It allows network administrators to have visibility into the routing decisions made by the router and helps them understand the paths that packets will take when traversing the network.

By analyzing the route table, administrators can verify the presence of expected routes, identify any missing or incorrect routes, and troubleshoot connectivity or routing problems. This command is a fundamental tool for network administrators working with Cisco routers to gain insights into the network's routing infrastructure.

learn more about "show ip route." here:

https://brainly.com/question/32098872

#SPJ11

About C header files of C programming

Answers

Answer:

A header file is a file with an extension. Which contains C function declarations and macro definitions to be shared between several source files. There are two types of header files: the files that the programmer writes and the files that come with your compiler.

Write a program that asks the user to enter the name of an input file. If the file does not exist, the program should prompt the user to enter the file name again. If the user types QUIT in any uppercase/lowercase combinations, then the program should exit without any further output.

Answers

Answer:

I can help you with that inbox me

what service helps you analyze how many people visit your website, which pages they look at, and how long they spent at each page?

Answers

If you employ Search engine to track the site traffic, you can look at a variety of information about your visitors, including how they found your site, how long they stayed there, and which pages they viewed.

Describe a website example?

A website, often known as a web site, is indeed a collection of internet pages and associated material that is published on for at least one server and given a shared domain name. Most websites focus on a single subject or objective, including such news, education, business, entertainment, or social networking.

Which website do you mean?

A collection of World Wide Web sites that are made available by a person, business, or organization and typically contain links to one another.

To know more about Website visit:

https://brainly.com/question/28431103

#SPJ4

Other Questions
Cual de los siguientes temas es comun a las dos fuentes de gulnea ecudatorial I need help ASAP please Im giving brainliest! Read paragraph 81 of the story. Then answer the multiple-choice questions that follow. From "Ghosts" by Chimamanda Ngozi AdichieI am sitting now in my study, where I helped Nkiru with her difficult secondary school math assignments. The armchair leather is solid and worn. The pastel paint above the bookshelves is peeling. I wonder why it never came up, throughout the years, that Ikenna did not die. True, we did sometimes hear stories of men who had been thought dead and who walked into their compounds months, even years, after January 1970; I can only imagine the quantity of sand poured on broken men by family members suspended between disbelief and hope. But we hardly talked about the war. When we did it was with an implacable vagueness, as if what mattered were not that we crouched in muddy bunkers during air raids after which we buried corpses with bits of pink on their charred skin, not that we ate cassava peels and watched our childrens bellies swell, but that we survived. It was a tacit agreement among all of us, the survivors of Biafra. Even Ebere and I, who had debated our first childs name, Zik, for months, agreed very quickly on Nkiru: what is ahead is better. We will look forward, forward, forward.Which evidence best supports the answer to question 1?A. I am sitting now in my study, where I helped Nkiru with her difficult secondary school math assignments.B.When we did it was with an implacable vagueness, as if what mattered were not that we crouched in muddy bunkers during air raids after which we buried corpses..."C. True, we did sometimes hear stories of men who had been thought dead and who walked into their compounds months, even years, after January 1970..."D."Even Ebere and I, who had debated our first childs name, Zik, for months, agreed very quickly on Nkiru..." During the current year, merchandise is sold for $124,800 cash and $525,300 on account. The cost of the goods soid is $403,100, What is the amount of the gress proft Write the coordinate of A after A (5,3) got reflected over the x-axis. The essence of _____ marketing is the belief that if businesses deliver valuable information to buyers, customers will reward them with their business and loyalty. Which number is farther from 0? What type of normal balance does the retained earnings account have debit or credit which type of income statement g the distinction between the lithosphere and the asthenosphere is primarily on the basis of a difference in ________. a spaceship is traveleing around the earth at 8000m/s, what will the velicity be witht he plant of 5 times the radied and 1/8 the the mass What is Winston trying to learn in his conversation with the "old man"?Why? What is the result? 1984 AD is a diameter of E. CE is perpendicular to AD.What is the measure of ?18090115240 solve for y, im really confused on this it would be great if i could get a explanation and a answer !! using definition of the hyperbolic function show that cosh^2 x-sinh^2 x=1 what is y=m?+b Have you guys watch blue is the warmest colour? You have 64 grams of a radioactive kind of ruthenium. If its half-life is 3 days, how much will be left after 6 days? How do scientists collect data?O A. Through careful observation and measurementO B. Through educated guessesO C. Through interpretation of the conclusionsO D. Through analysis of the results what is the difference between speed and volocity? please awnser question in photo need fast Lines of latitude on Earth are actually circles. The Tropic of Cancer is the northernmost line of latitude at which the Sun appears directly overhead at noon. The Tropic of Cancer has a radius of 5854 kilometers. To qualify for an around-the-world speed record, a pilot must cover a distance no less than the circumference of the Tropic of Cancer, cross all meridians, and land on the same airfield where he started. A. The minimum distance that a pilot must fly to qualify for an around-the-world speed record is about kilometers. Question 2 b. Estimate the time it would take for a pilot flying at an average speed of 1231 kilometers per hour to fly around the world. At this speed, it would take about hours