Consider the following class definitions. public class ci { public ci) { /* implementation not shown */ } public void m1() { System.out.print("A"); } public void m2() { System.out.print("B"); } } public class C2 extends ci { public C2) { /* implementation not shown */ } public void m2() { System.out.print("C"); } } The following code segment appears in a class other than cı or c2. ci objl = new C2(); obj1.m1(); obji.m2(); The code segment is intended to produce the output AB. Which of the following best explains why the code segment does not produce the intended output?

Answers

Answer 1

When ci obj1 = new C2() is executed, obj1 is of type ci, but refers to an object of type C2. The methods in the C2 class are called with obj1, so obj1.m1() calls the m1() method of the ci class and outputs the letter A.

Then obj1.m2() calls the m2() method of the C2 class and outputs the letter C instead of B, as the C2 class overrides the m2() method of the ci class by printing C instead of B.The obj1 reference is declared to be of type ci, which means that it may be used to refer to any ci object. obj1.m1() calls the ci.m1() method and outputs A. obj1.m2() calls the C2.m2() method and prints C instead of B, which is what the expected output should have been.

To understand this, consider the two classes, C1 and C2, where C2 is a subclass of C1. Both C1 and C2 have methods m1() and m2(), and C2 overrides C1's m2(). obj1 is of type C1 and points to an instance of C2. Since the reference is of type C1, it cannot directly call C2's methods; instead, it uses the methods of C1. As a result, obj1.m1() will call C1's m1() method and output "A," while obj1.m2() will call C2's m2() method and output "C."

To know more about executed visit:

https://brainly.com/question/11422252

#SPJ11


Related Questions

Help fast
The back-end of an app is best described as:

Help fast The back-end of an app is best described as:

Answers

The answer is A
The check out feature of a shopping app

Write In Python

Write a program that writes a series of random numbers to a file called rand_num. Each random number should be be in the range of 1 to 500. The application should allow the user to specify how many numbers the file will hold. Then write a program that reads the numbers in the file rand_num and displays the total of the numbers in the file and the number of random numbers in the file.

Answers

Answer:

Here's a Python program that writes a series of random numbers to a file and then reads the numbers from the file and displays the total and the number of numbers in the file:

import random

# Function to write random numbers to a file

def write_random_numbers(filename, num_numbers):

   with open(filename, "w") as file:

       for i in range(num_numbers):

           random_number = random.randint(1, 500)

           file.write(str(random_number) + "\n")

   print("Random numbers written to file:", filename)

# Function to read the numbers from a file and display the total and count

def read_random_numbers(filename):

   total = 0

   count = 0

   with open(filename, "r") as file:

       for line in file:

           number = int(line.strip())

           total += number

           count += 1

   print("Total of numbers in the file:", total)

   print("Number of random numbers in the file:", count)

# Main program

num_numbers = int(input("Enter the number of random numbers to generate: "))

filename = "rand_num.txt"

write_random_numbers(filename, num_numbers)

read_random_numbers(filename)

what is adb command???​

Answers

Answer:

Android Debug Bridge (adb) is a versatile command-line tool that lets you communicate with a device. The adb command facilitates a variety of device actions, such as installing and debugging apps, and it provides access to a Unix shell that you can use to run a variety of commands on a device.

Explanation:

I hope this helps!!

Which of the following BEST describes a front-end developer?

Answers

Answer:

plz give me BRAINLIEST answer

Explanation:

Definition: Front end development manages everything that users visually see first in their browser or application. Front end developers are responsible for the look and feel of a site. ... As a front end developer you are responsible for the look, feel and ultimately design of the site.

A front-end developer is a type of software developer who specializes in creating the user interface (UI) and user experience (UX) of a website or application. They are responsible for translating design mock-ups and wireframes into functional code using programming languages such as HTML, CSS, and JavaScript.

Front-end developers work on the client-side of web development, focusing on the visual aspects and interactions that users see and experience directly. They ensure that the website or application is visually appealing, responsive, and user-friendly across different devices and browsers.

In addition to coding, front-end developers collaborate closely with designers and back-end developers to integrate the UI with the back-end systems and databases. They may also be involved in optimizing the performance and accessibility of the front-end code, as well as testing and debugging to ensure smooth functionality.

Learn more about databases on:

https://brainly.com/question/30163202

#SPJ6

how do you think someone has programmed computer calculator?​

Answers

Answer:

Originally, calculator programming had to be done in the calculator's own command The most basic calculations are addition, subtraction, multiplication, and division. The more transistors an integrated circuit has, the more advanced mathematical functions it can perform.

20
Select the correct answer.
Part of social health means that you make positive contributions to your community,
ОА.
True
OB
False
Reset
Next

Answers

Answer:

true

Explanation:

because my 8 ball said so

Answer:

True

Explanation:

When you want to express the ratio of all outputs to all inputs, you should use a ________ productivity measure.

Answers

When you want to express the ratio of all outputs to all inputs, you should use a total productivity measure.

What is total measure productivity?

Productivity is known to be one that can be calculated by the act of measuring the number of units that is made and that is relative to employee labor hours or by the act of measuring a firm's net sales that is known to be relative to employee labor hours.

Note that Multifactor productivity connote the fact that the productivity of all the inputs that are said to be used in the production process.

Therefore, When you want to express the ratio of all outputs to all inputs, you should use a total productivity measure.

Learn more about productivity from

https://brainly.com/question/2992817

#SPJ1

Tawni made some changes to her file and wants to save the changes in a document with a different title. How can she do this?

Answers

Answer:

By using the save as tab

Explanation:

The save as option allows a user to make another different copy of the same document, or to save the document in another location within the computer system. The shortcut key to quickly access the save as option, is F12. The save as option can also be accessed by going through the following steps

1) Click the File tab

2) Click on the Save as option

3) Select a location to save the file then click save to confirm selection and save the file.

Answer:save as tab

Explanation:

Can Someone Please Help Me?! I Have already had a rough morning!

What is step one in the digital file organization process?

What is rule number one?

What is rule number two?

What is the obvious advantage to rule number two?

What is the tree structure?

What are two main ways to organize your files?

How should you name your files?

What is cloud storage?

What are some different cloud storage software?

What is the importance of backing up your computer?

Answers

Answer:

The first step to organizing your digital files is knowing and documenting what you need to keep and why. This means that you need to create record retention guidelines if they do not already exist. Typically, information needs to be kept for legal and accounting purposes.

Which is true for comments? Group of answer choices The compiler does not generate machine code for comments. The compiler converts comments into a series of machine instructions. The compiler allocates memory for comments along with for variables. The compiler translates comments into ASCII values.

Answers

The true statement of comments is that the compiler does not generate machine code for comments.

Does a compiler generate machine code for comments?

This is known to  be No for the answer because , they are said to often ignored by the compiler.

Therefore one can say that The true statement of comments is that the compiler does not generate machine code for comments as that is not their functions.

Learn more about comments from

https://brainly.com/question/27049042

#SPJ1

Which command do you use to save a document with a new name? Choose the answer.
Save As
Save New
Save Type
Save​

Answers

Answer:

Explanation:

Most word processors use Save As which not only allows you to save with a different name, but the root can be changed as well. I use LibreOffice write. Its Save As Command allows you to change the name from say J1 to Jerome and also to save the document in many of the word formats. That last ability is really important because some people only have Microsoft products. On my old computer, I have Microsoft Word 2000. If I want to transfer files, that is how I have to save the file.

How does one select an entrepreneurial activity?

Answers

Entrepreneurial activities are those activities, the tasks and or functions of an entrepreneur. ... The second part can be answered by looking at the options of entrepreneurial activities, for instance is it marketing, selling the brand name, coming up with funds, etc.

The primary objective of the _____ domain is to keep a lookout over the entire information security program

Answers

The primary objective of the "monitoring" domain is to keep a lookout over the entire information security program. Monitoring plays a crucial role in ensuring the security and integrity of an organization's systems and data.

Here are some key points to understand about the monitoring domain:

1. Scope of monitoring: The monitoring domain covers all aspects of an information security program, including networks, systems, applications, and data.

It involves continuous surveillance and analysis of security events and activities.

2. Detecting threats: The main goal of monitoring is to identify any potential security threats or incidents that could compromise the confidentiality, integrity, or availability of information.

This can include monitoring network traffic, system logs, user activities, and other relevant sources of data.

3. Alerting and response: Once a potential threat or incident is detected, the monitoring system should promptly generate alerts or notifications to relevant personnel or security teams. This allows for quick response and mitigation of the issue before it causes significant harm.

4. Log analysis: Monitoring also involves analyzing logs and other data sources to identify patterns, anomalies, or indicators of compromise. This helps in understanding the nature of the threat and aids in incident response and forensic investigations.

5. Compliance and reporting: The monitoring domain is closely linked to compliance requirements and industry standards.

Organizations often need to demonstrate their adherence to security policies and regulations by maintaining appropriate monitoring mechanisms and generating reports on security events and incidents.

Overall, the monitoring domain is essential for maintaining the overall security posture of an organization. It helps in early threat detection, timely incident response, and continuous improvement of the information security program.

To know more about organization's systems visit:

https://brainly.com/question/13278945

#SPJ11

To make the first day on the job easier, you can

Answers

Answer:

How To Prepare For Your First Day At A Job

Research, Research, Research.

Make Contact With Your Manager.

Confirm Your Schedule.

Do A Test Run Of Everything.

Introduce Yourself To The Team Virtually.

Find A Buddy.

Practice Extra Self-Care.

Arrive Early.

Explanation:

Please Help


Brad is exploring Excel’s Sort tool and, in the Options menu, finds an interesting toggle: he can select between a default of Sort top to bottom and Sort left to right. Thinking through what the sort command does and the structure of a spreadsheet, what new trick can Brad perform if he switches to Sort left to right?

Answers

Choose the sort operation's order from the Order list. You can order the data numerically or alphabetically, ascending or descending. This new trick is performed by Brad if he selects Sort left to right.

What kinds of data are sorted?

Data structures support a number of sorting techniques, including bucket sort, heap sort, fast sort, radix sort, and bubble sort.

Excel's SORT function uses columns or rows to rank the contents of an array or range in either ascending or descending order. The class of dynamic array functions includes SORT. One of the most popular sorting algorithms is quicksort since it is also one of the most effective. The first step is to choose a pivot number. This number will divide the data, with smaller numbers to its left and larger numbers to its right.

Learn more about the Excel here: https://brainly.com/question/25863198

#SPJ4

How does adding a formatted table of contents help or befefit the reader of your document? Creates formatting for the characters in the document, Determines the file name when you save your document, It makes it easy to find different sections in the document, Creates easy-to-read tables in the document

Answers

The insertion of the formatted table of contents helps or benefits the reader by easily locating and identifying the list of topics or chapters with respect to their interest and sequence.

What is the importance of formatting a document?

The process of formatting a document is important for two reasons that are as follows:

It makes your essay look like an essay (rather than a letter or a note to a friend).It helps to make your essay more readable.

Formatting tables are used to organize data that is too detailed or complicated to be described adequately in the text, allowing the reader to quickly see the results. They can be used to highlight trends or patterns in the data and to make a manuscript more readable by removing numeric data from the text.

Formatting tables are saved in all respective formats like word, excel, MS Powerpoint, etc. depending on the attributes of the data and information.

To learn more about Formatting documents, refer to the link:

https://brainly.com/question/1504260

#SPJ1

What are three major events in computer science history?

Answers

Answer: In 1834, Charles Babbage announces the analysis engine.

1943: The birth of Mark I Colossus.

1954: First prototype of desktop calculators.

Explanation:

1). 1834, Charles Babbage announces the analysis engine. ...

2).1943: The birth of Mark I Colossus. ...

3). 1954: First prototype of desktop calculators. ...

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​

Answers

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 the best CPU you can put inside a Dell Precision T3500?

And what would be the best graphics card you could put with this CPU?

Answers

Answer:

Whatever fits

Explanation:

If an intel i9 or a Ryzen 9 fits, use that. 3090's are very big, so try adding a 3060-3080.

Hope this helps!

In Java, each container has its own ____________________, which determines how the components are laid out.

Answers

In Java, each container has its own layout manager, which determines how the components are laid out. The correct option is b.

A layout manager is a key component in Java that regulates how other components are organised and placed inside a container.

Each container, like a JFrame or JPanel, has a specific layout manager connected to it. The layout manager is in charge of choosing how the components will be presented, taking size, location, and alignment into account.

It guarantees that the elements inside the container are arranged in a logical and aesthetically pleasing way.

Developers can construct adaptable and responsive user interfaces that fit different screen sizes and orientations by utilising various layout managers, such as BorderLayout, FlowLayout, or GridBagLayout.

In Java applications, the layout manager makes it easier to organise and develop intricate graphical user interfaces.

Thus, the correct option is b.

For more details regarding java, visit:

https://brainly.com/question/12978370

#SPJ4

Your question seems incomplete, the probable complete question is:

In Java, each container has its own ____________________, which determines how the components are laid out.

Select one:

a. container

b. layout manager

c. Swing component

d. frame manager

a control chart used to monitor the number of defects per unit is the

Answers

The control chart used to monitor the number of defects per unit is the p-chart.

A control chart is a statistical tool that is used to monitor the quality of the product and process.

Control charts can be used to monitor variables such as length, weight, and temperature, as well as attributes such as the number of defects or the number of occurrences.

In a control chart, data is plotted over time.

The data is then evaluated to see if it is in control or out of control. If the data is in control, then the process is stable.

If the data is out of control, then the process is unstable and needs to be adjusted.

The control chart is a valuable tool for identifying problems and implementing solutions.

Know more about control chart here:

https://brainly.com/question/26478724

#SPJ11

one way to emphasize cooperation in a multi-screen three-player game might be to:______

Answers

One way to emphasize cooperation in a multi-screen three-player game might be to introduce collaborative objectives and rewards.

To emphasize cooperation in a multi-screen three-player game, the game design can incorporate collaborative objectives that require players to work together towards a common goal. These objectives could involve solving puzzles, overcoming challenges, or coordinating strategies to achieve success. By structuring the gameplay in such a way that cooperation becomes essential for progress, players are incentivized to communicate, share information, and coordinate their actions. Additionally, providing shared rewards for successful collaboration further reinforces the importance of cooperation and encourages players to actively engage with each other. This approach fosters a sense of teamwork and creates a more immersive and enjoyable multiplayer experience.

learn more about multi-screen here:

https://brainly.com/question/6509084

#SPJ11

convert one billion byte into one gigabyte​

Answers

Answer:

One gigabyte (GB) is about 1 billion bytes, or 1 thousand megabytes. A computer might have 4 GB of RAM. A flash memory card used in a camera might store 16 GB.

What are some internet hardware components? What is used to make the internet work?

Answers

Answer:

Internet Connection Components and Functions

DSL Modem–

DSL/Broadband Filter.

Firewall and NAT Router.

Computer Firewalls –

ICS (Internet Connection Sharing)-

Network Hub.

Network Switch.

Wireless Access Point.

Given the following two structs: typedef struct char p[10]; typedef struct double x; char c; double x; int a; char p(10]; recordl; char c; int a; irecord2; 50) What is the sizeof(recordl? A23 B24 C32 D40

Answers

I will try to interpret it to the best of my ability and explain the process of determining the sizeof(recordl) based on assumptions.

First, let's correct the syntax errors and inconsistencies in the code:

```c

typedef char p[10];

typedef double x;

char c;

double x;

int a;

p record1;

char c;

int a;

p record2[50];

```

Now, we have two structs defined: `p` and `x`. The `p` struct is defined as an array of 10 characters, while the `x` struct represents a double.

Next, we have two variables declared: `record1` and `record2`. `record1` is of type `p`, which is an array of 10 characters. `record2` is an array of 50 elements of type `p`.

To determine the sizeof(record1), we need to calculate the size in bytes of the `p` struct. Since `p` is an array of 10 characters, and the size of a character is 1 byte, the size of `p` would be 10 * 1 = 10 bytes.

Therefore, sizeof(record1) would be equal to the size of the `p` struct, which is 10 bytes.

To determine the sizeof(record2), we need to calculate the size in bytes of the `p` struct multiplied by the number of elements in the array, which is 50. So, sizeof(record2) would be 10 bytes * 50 = 500 bytes.

In summary, the sizeof(record1) is 10 bytes and the sizeof(record2) is 500 bytes. None of the options A23, B24, C32, or D40 match the calculated sizes.

Learn more about C Programming :

https://brainly.com/question/26535599

#SPJ11

an appropriate datatype for one wanting a fixed-length type for last name would include: a) Varchar
b) Chat
c) Blob
d) Date

Answers

The appropriate datatype for a fixed-length type for last name would be "Char".

In database design, the datatype of a column determines the type of data that can be stored in that column.

The "Char" datatype is used to store fixed-length character strings. It requires the specification of the maximum number of characters that can be stored in the column, and any shorter values are padded with spaces to the specified length.

This makes it an appropriate choice for storing last names, as they typically have a fixed length. In contrast, the "Varchar" datatype is used for variable-length character strings, which is not ideal for storing fixed-length data.

The "Blob" datatype is used for storing binary data, while the "Date" datatype is used for storing date and time values. Therefore, the most appropriate datatype for a fixed-length type for last name would be "Char".

To know more about datatype: https://brainly.com/question/179886

#SPJ11

you are running out of time and budget for your game development project you had great ideas for making a randomized highly customizable game experience with high levels of emerg but now you can only fit in the features of one of those qualities highly immersive highly randomize or highly customized briefly describe your imaginary games style then explain which of these three qualities would be best to implement in that type of game on a limited budget​

Answers

My games style  in terms of their qualities will be made up of:

Movement from Attack to Defense.Set up Defense.Movement from Defense to Attack. Set Pieces.

What is a game style?

Game style is known to be a term that is made or used by coaches, sports scientists, etc., to show the patterns of play in a scenario of team sports.

Therefore, My games style  in terms of their qualities will be made up of:

Movement from Attack to Defense.Set up Defense.Movement from Defense to Attack. Set Pieces.

Learn more about Games from

https://brainly.com/question/5144258

#SPJ1

The harm of stereotypes are likely to be aggravated in

Answers

Answer:

conflict situations

Answer:

B. Conflict situations

Hope this helps!

Explanation:

la révolution industrielle rédaction

Answers

The Industrial Revolution began in the 18th century in Great Britain. It was only the first stepping-stone to the modern economic growth that is still growing to this day. With this new bustling economic power force Britain was able to become one of the strongest nations. While the nation was changing so was the way that literature was written. The Industrial Revolution led to a variety of new social concerns such as politics and economic issues. With the shift away from nature toward this new mechanical world there came a need to remind the people of the natural world. This is where Romanticism came into play; it was a way to bring back the urban society that was slowly disappearing into cities.

The Agricultural Revolution: Between 1750 and 1900 Europe’s population was dramatically increasing, so it became necessary to change the way that food was being produced, in order to make way for this change. The Enclosure Movement and the Norfolk Crop Rotation were instilled before the Industrial Revolution; they were both involved in the separation of land, and the latter dealt more with developing different sections to plant different crops in order to reduce the draining of the land. The fact that more land was being used and there weren’t enough workers it became necessary to create power-driven machines to replace manual labor.

Socioeconomic changes: Prior to the Industrial Revolution, the European economy was based on agriculture. From the aristocrats to the farmers, they were linked by land and crops. The wealthy landowners would rent land to the farmers who would in turn grow and sell crops. This exchange was an enormous part of how the economy ran. With the changes that came with the Industrial revolution, people began leaving their farms and working in the cities. The new technologies forced people into the factories and a capitalistic sense of living began. The revolution moved economic power away from the aristocratic population and into the bourgeoisie (the middle class).

The working conditions in the factories during the Industrial Revolution were unsafe, unsanitary and inhumane. The workers, men, women, and children alike, spent endless hours in the factories working. The average hours of the work day were between 12 and 14, but this was never set in stone. In “Chapters in the Life of a Dundee Factory Boy”, Frank Forrest said about the hours “In reality there were no regular hours, masters and managers did with us as they liked. The clocks in the factories were often put forward in the morning and back at night. Though this was known amongst the hands, we were afraid to speak, and a workman then was afraid to carry a watch” (Forrest, 1950). The factory owners were in charge of feeding their workers, and this was not a priority to them. Workers were often forced to eat while working, and dust and dirt contaminated their food. The workers ate oat cakes for breakfast and dinner. They were rarely given anything else, despite the long hours. Although the food was often unfit for consumption, the workers ate it due to severe hunger.

During this time of economic change and population increase, the controversial issue of child labor came to industrial Britain. The mass of children, however, were not always treated as working slaves, but they were actually separated into two groups. The factories consisted of the “free labor children” and the “parish apprentice children.” The former being those children whose lives were more or less in the hands of their parents; they lived at home, but they worked in the factories during the days because they had to. It was work or die of starvation in this case, and their families counted on them to earn money. Fortunately these children weren’t subjected to extremely harsh working conditions because their parents had some say in the matter. Children who fell into the “parish apprentice” group were not as lucky; this group mainly consisted of orphans or children without families who could sufficiently care for them. Therefore, they fell into the hands of government officials, so at that point their lives as young children turned into those of slaves or victims with no one or nothing to stand up for them. So what was it exactly that ended this horror? Investments in machinery soon led to an increase in wages for adults, making it possible for child labor to end, along with some of the poverty that existed. The way that the Industrial Revolution occurred may have caused some controversial issues, but the boost in Britain’s economy certainly led toward the country becoming such a powerful nation.

Danica is creating a flyer for her cookies that she will sell during her school fair. She wants to add a registered
symbol next to the name of her family's company, Grandma's Kitchen.
How can Danica tell Word where she wants the symbol to be inserted?
-using the Enter tab to create a space for the symbol
putting the insertion point where she wants the symbol
bolding the text in the area where she wants the symbol
highlighting the text that she wants to have next to the symbol

Answers

Answer:

putting the insertion point where she wants the symbol

Explanation:

Danica tells Word, where she wants the symbol to be inserted, is putting the insertion point where she wants the symbol. Thus the correct option is B.

What is a Family company?

A family company is referred to as companies that are owned, handled, and run by family members having relationships with each other as siblings, parents, son or daughter, and so on.

In this case, Danica is creating a flyer for her cookies that she will sell during her school fair she wants to add a symbol to her family company names. To indicate where the symbol is inserted she should use an insertion point.

The line in your text that blinks to show where text is added as you enter is known as the insertion point. Moving an insertion point can be done in a variety of ways. This is also called a cursor.

Therefore, option B is appropriate.

Learn more about  insertion points, here:

https://brainly.com/question/14801455

#SPJ6

Other Questions
What is the first step in solving 6(3x+10) = 78?Multiply both sides of the equation by 6.Subtract 6 from both sides of the equation.Simplify the left side of the equal sign by distributing the 6 across (3x + 10). 4x = y + 8 write in standard form For the functions below, calculate the indicated function values.(1 Point)f (x) = x 8(x) = 5x - 12 h (x) = x2 + 4x - 7Find f (10)A. 10B. 12C. 38Help!? race, gender, sexual orientation, and ability impact the transactional communication model based upon a supply chain manager practicing ______ -loop learning would examine working conditions among suppliers and also assess the cultural norms and values in home countries that regularly produce abuses Can someone please help i dont get what to do after the third step 1 of what 6 intrusion details must be present in order for a DSM diagnosis of PTSD? (MDFFPP) What are the motives of Animal Farm? Charley is at the library, L. His house is located southeast of the library. Name a point that could represent Charleys house SSolve the initial value problem y" + 4y' + 4y = 8 - 4x, y) = 1, y'o = 2. A local restaurant wants to expand its patio dining area. It has walls on two sides so it can only expand out to the North and East (2 directions). The current patio is 30 feet by 30 feet. They need to expand to cover 2500 square feet. When driving during the daytime in reduced visibility, such as rain, smoke, or fog,A: You must turn on your low beam headlights,B: You should turn on only your parking lights,C: You must turn on your four-way emergency flashers. What is the correct ICD-10 code for hypothyroidism? Lexy used the formula shown to calculate the force of gravity on a space shuttle.Fg = GStartFraction (3 times 10 Superscript 5 Baseline kilograms) (6 times 10 Superscript 24 Baseline kilograms) over [(6.4 times 10 Superscript 6 Baseline m) + (1.8 times 10 Superscript 5 Baseline m)] Superscript 2 EndFractionWhat does 3 105 kg represent?the difference between Earths mass and the space shuttles massthe sum of Earths mass and the space shuttles massthe mass of Earththe mass of the space shuttle Solve for the remaining sides and angles if possible (if not answer "DNE" in all answer boxes). Round to one decimal places, if necessarya = 1, b = 5, c = 8 convertible bonds provide potential benefits only to the issue where Please help me Due 12:00 Pm hurry Write in Spanish a minimum of 5 sentences about how todays technology helps you communicate with your friends and family. Use at least four words from the list. Give specific examples that show how you use technology today compared to what you used to do to communicate.Explain how technology helps you get in touch with people.Explain how technology affects the way you relate to others around you. Word Bank referenceYour options are: ayudarse, comunicarse, hablarse, llamarse, para, por Required information [The following information applies to the questions displayed below.] Demarco and Janine Jackson have been married for 20 years and have four children (no children under age 6 at "The care of the Earth is our most ancient and most worthy, and after all ourmost pleasing responsibility. To cherish what remains of it and to foster its renewalis our only hope." ~ Wendell Berry (can someone help me to explain this ^_^)