Consider the following code segment.
int[] arr = {7, 2, 5, 3, 0, 10);
for(int k = 0; k < arr.length - 1; k++) {
if(arr[k] arr[k+1]) {
System.out.print(k + " " + arr[k] + " ");
}
}
What will be printed as a result of executing the code segment?
A
725330
B
07255 10
C
022330
D
173543
E
072533

Answers

Answer 1

It should be noted that the number that will be printed as a result of executing the code segment is E. 0 7 2 5 3 3

How to explain the information

int[] arr = {7, 2, 5, 3, 0, 10};

for (int k = 0; k < arr.length - 1; k++) {

   if (arr[k] < arr[k+1]) {

       System.out.print(k + " " + arr[k] + " ");

   }

}

7 > 2. so, 0 7 is printed

5 > 3. so, 2 5 is printed

3 > 0. so, 3 3 is printed

Therefore, it should be noted that the number that will be printed as a result of executing the code segment is E. 0 7 2 5 3 3

Learn more about code on

https://brainly.com/question/26134656

#SPJ1


Related Questions

State what is meant by the terms: Parallel data transmission ......................................................................................................... ................................................................................................................................................... ................................................................................................................................................... Serial data transmission ........................................................................................................... ................................................................................................................................................... ...................................................................................................................................................

Answers

Answer:

parallel communication is a method where several binary digits are sent as a whole, on a link with several parallel channels.

serial communication conveys only a single bit at a time over a communication channel or computer bus.

Which type of cache is found as part of more advanced CPUs, is shared among the CPU cores and typically comes in sizes of 8 and 16 MB

Answers

Answer: Level 3

Explanation: I studied for the test

which meaning does the abbreviation c/c represent?

Answers

The phrase "carbon copy" alludes to the message's recipient whose location appears after Cc: header.

What does CC stand for?

Carbon copies: To let the recipients of a business letter know who else received it, a cc designation would be placed at the bottom of the letter, followed by the names of those who received carbon copies of the original. The term "cc" in emails refers to the additional recipients who received the message.

A typical email will have a "To" box, a "CC" field, and only a "BCC" section that allows you to enter email addresses. The abbreviation for carbon copy is CC. "Blind carbon copy" is what BCC stands for. The abbreviation BCC stands in blind carbon copy, while Cc stands for carbon copy. When copying someone's email, use Cc for copy them openly or Bcc to copy them secretly.

To learn more about carbon copy refer to :
brainly.com/question/11513369
#SPJ4

which one would be considered critical information

Answers

Critical information refers to any data, information, or knowledge that is vital to the operation, stability, or success of an organization. It encompasses both sensitive and confidential information.

Critical information may include:Trade secrets - These are proprietary techniques or knowledge that a company uses to create a product or service.Customer information - This data includes personal and financial information about customers that a company must keep secure and private. This information may include names, addresses, social security numbers, or credit card numbers.

Financial data - Financial data includes information such as account balances, credit scores, investment performance, or income reports. Financial data is crucial to the success of a business and must be kept confidential and secure.Intellectual property - Intellectual property refers to any unique creation or invention that is the result of a person's creativity or intellectual effort. Intellectual property may include patents, trademarks, copyrights, or other proprietary data. This information is critical to the success and competitive advantage of a business.

To know more about knowledge visit:

https://brainly.com/question/28025185

#SPJ11

x = 19 y = 5 print (x % y)

Answers

Answer:

hehe

Explanation:

hehe

Answer:

3.8

Explanation:

19 / 5

tabitha is assigning initial values to each variable in her program. which term describes the process of assigning an initial value to a variable? question 12 options: initializing storing valuing declaring

Answers

The term that describes the process of assigning an initial value to a variable is "initializing." (Option a)

Why is initializing important in programming?

Initializing variables is important in programming because it sets an initial value for a variable before it is used in computations or operations.

  This helps avoid unexpected behavior or errors caused by using uninitialized variables.

Initialization ensures predictable and consistent behavior, promoting code reliability and preventing potential bugs or issues.

Learn more about initializing at:

https://brainly.com/question/27230187

#SPJ4

Adam is using the software development life cycle to create a new game. He made an outline of what functionality the game will require, determined how long it will take to create the game, and made a list of people who could help him with the graphics. What should Adam do next

Answers

Answer:

Write pseudocode and create a mock-up of how the game will work and look

Explanation:

Since in the question it is mentioned that Adam wants to develop a new game for this he made an outline with respect to game functions needed, time period, people who help him.

After that, he writes the pseudocode i.e a programming language and then develops a model i.e mock up that reflects the working of the game and its look so that he would get to know how much work is pending.

technological solutions and quantitative reasoning is

Answers

Apply technology & mathematics to information analysis, plan creation, and outcome prediction in a variety of scenarios.

What quantitative reasoning is there?

One of the most important learning outcomes for students in the twenty-first century is quantitative reasoning (QR), which is defined as the habits of mind to use data and quantitative methods to a variety of situations in personal, professional, or public contexts.

What are quantitative thinking and skills?

Definition on Quantitative Reasoning by Hollins Quantitative thinking refers to the use of quantitative ideas and abilities to resolve issues in the actual world.

To know more about quantitative reasoning visit:

https://brainly.com/question/15566375

#SPJ4

You wrote a list of steps the user will take to perform a task. You have created a

Answers

Answer:

You created an algorithm

Explanation:

The question would be better answered if there are options. Since there is none, I'll answer on a general term.

One answer that fits the description in the question is an algorithm. When you write an algorithm, you have written a guide or a step to achieve/complete a task.

Take for instance, you wrote step by step on how to use a microwave or for a user to operate a computer or for whatever instruction it might be; what you have done is that you have written an algorithm.

This is then further divided into two;

The instructions could be in form of (1) a flowchart or (2) a pseudocode

Irrespective of (1) & (2), what you've created is an algorithm.

Verifying that users are who they say they are and that each input arriving at the system came from a trusted source is _____ .
authenticity
credibility
accountability
integrity

Answers

The term that fits the description of verifying that users are who they say they are and that each input arriving at the system came from a trusted source is authenticity.

Authenticity is the quality of being genuine, reliable, and trustworthy. It ensures that the information being provided is not fake or manipulated, and the individuals accessing the system are legitimate users with the proper credentials. Authentication methods such as passwords, biometrics, and two-factor authentication are used to establish authenticity in computer systems. Ensuring authenticity is important for maintaining the security and privacy of data and preventing unauthorized access. Therefore, it is crucial for organizations to implement robust authentication mechanisms to protect their systems from cyber threats.

To know more about Authenticity visit :

https://brainly.com/question/30699179

#SPJ11

When all bits of a character are transferred one after another, the bits are transferred in ___________ mode.

Answers

When all bits of a character are transferred one after another, the bits are transferred in serial mode.

In serial communication, data is transmitted one bit at a time, one after another, over a single conductor. This is in contrast to parallel communication, where data is transmitted multiple bits at a time, over multiple conductors.

Serial communication is typically used for lower-speed data transmission, such as RS-232 and USB. Parallel communication is typically used for higher-speed data transmission, such as PCI Express and SATA.

There are several advantages to serial communication, including:

It is simpler and less expensive to implement than parallel communication.It requires fewer conductors, which can save space and weight.It is less susceptible to interference from noise.

However, there are also some disadvantages to serial communication, including:

It is slower than parallel communication.It can be more difficult to troubleshoot problems with serial communication.It is not as well-suited for high-speed data transmission.

Overall, serial communication is a good choice for lower-speed data transmission applications where simplicity, cost, and space are important considerations. Parallel communication is a better choice for high-speed data transmission applications where speed and reliability are important considerations.

Here are some additional examples of serial communication:

RS-232 is a serial communication standard that is commonly used for connecting a computer to a modem, printer, or other peripheral device.USB is a serial communication standard that is commonly used for connecting a computer to a peripheral device, such as a mouse, keyboard, or printer.FireWire is a serial communication standard that is commonly used for connecting a computer to high-speed devices, such as external hard drives or video cameras.

To know more about Troubleshooting click here

brainly.com/question/30225560

#SPJ11

network needs to support 3 customers each of which needs 600 ip addresses. what is a reasonable address allocation?

Answers

A reasonable address allocation for the network would be to use the Class B network address space, which provides 65,536 total IP addresses.

Each customer would be allocated a /19 subnet, which would provide 8,190 usable IP addresses per subnet.

The Class B network address space ranges from 128.0.0.0 to 191.255.255.255, with a subnet mask of 255.255.0.0. A /19 subnet mask would have a subnet mask of 255.255.224.0, which provides 8,190 usable IP addresses per subnet. This allocation would allow each customer to have 600 IP addresses with room for growth, while also providing a sufficient number of subnets to support additional customers if necessary.

You can learn more about IP addresses at

https://brainly.com/question/14219853

#SPJ11

FIRST ANSWER GETS BRAINLIEST IM GIVING 30 POINTS!!!! Select the correct answer. Emma's project team has to create an application within a short period of time. After a few considerations, the team decided to go ahead with the RAD model. How does the RAD model decrease development time? A. by using automated tools and reusing existing code B. by gathering all requirments in the first phase of the project C.by testing at the end of the life cycle D. by producing detailed documentation ​

Answers

Answer:

RAD model enables rapid delivery as it reduces the overall development time due to the reusability of the components and parallel development. ... Iteration time can be short with use of powerful RAD tools. Productivity with fewer people in a short time. Reduced development time.

The RAD model decreases development time by using automated tools and reusing existing code. which is the correct answer would be option (A).

What is the RAD model?

The RAD model stands for Rapid Application Development. It is an implementation of an incremental model. The components or functions of the RAD model are created in concurrently as if they were mini-projects. The developments are timed, delivered, and then integrated into a functional prototype.

Because of component reusability and simultaneous development, the RAD approach offers quick delivery. Iteration time can be reduced by using strong RAD tools. Productivity with fewer individuals in a short period of time. Development time has been decreased.

Thus, the RAD model decrease development time by using automated tools and reusing existing code.

Hence, the correct answer would be option (A).

To learn more about the RAD model click here:

https://brainly.com/question/28903361

#SPJ2

Describing the technologies used in diffrent generation of computer​

Answers

Windows 98, Windows XP, Windows vista, Windows 7, Windows 8 y Windows 10.

Answer:

Evolution of Computer can be categorised into five generations. The First Generation of Computer (1945-1956 AD) used Vacuum Tubes, Second Generation of Computer (1956-1964 AD) used Transistors replacing Vacuum Tubes, Third Generation of Computer (1964-1971AD) used Integrated Circuit (IC) replacing Transistors in their electronic circuitry, Fourth Generation of Computer (1971-Present) used Very Large Scale Integration (VLSI) which is also known as microprocessor based technology and the Fifth Generation of Computer (Coming Generation) will incorporate Bio-Chip and Very Very Large Scale Integration (VVLSI) or Utra Large Scale Integration (ULSI) using Natural Language.

Explanation:

name four of the factors used in usle and explain where each is obtained. which one is completely out of the hands of the soil user?

Answers

The four factors used in USLE are given below with their origin.

1. Erosion Factor (E): This factor is obtained from the Universal Soil Loss Equation (USLE) and is used to estimate the soil loss caused by the erosive forces of water and wind. It takes into account the erosive power of precipitation, intensity of runoff, length of slope, and character of the soil.

2. Cover and Management Factor (C): This factor is obtained from the USLE and is used to calculate the effects of soil management practices on soil erosion. It is based on the amount and type of vegetative cover, the degree of soil surface protection, and the type of tillage used.

3. Support Practice Factor (P): This factor is obtained from the USLE and is used to calculate the effects of soil management practices on soil erosion. It is based on the use of conservation practices such as terraces, contour farming, or strip cropping.

4. Soil erodibility Factor (K): This factor is obtained from soil survey data and is used to express the relative susceptibility of soils to erosion. It is completely out of the hands of the soil user.

For more questions like USLE factors click the link below:

https://brainly.com/question/14960151

#SPJ4

Create a flowchart to find the total of 10 negative numbers start from -1.

Answers

Here is a simple flowchart to find the total of 10 negative numbers starting from -1:

```

Start

Set total = 0

Set counter = 1

While counter <= 10

|

├─ Yes ─┬─→ Add counter to total

│ ↓

│ Increment counter by 1

├─ No ──┬─→ Display total

End

```

In this flowchart, we start by initializing the total to 0 and the counter to 1. Then, we enter a loop that continues as long as the counter is less than or equal to 10. Inside the loop, we add the current value of the counter to the total, and then we increment the counter by 1. Once the loop finishes, we display the total.

\(\huge{\mathfrak{\colorbox{black}{\textcolor{lime}{I\:hope\:this\:helps\:!\:\:}}}}\)

♥️ \(\large{\textcolor{red}{\underline{\mathcal{SUMIT\:\:ROY\:\:(:\:\:}}}}\)

Printed on paper, how many pages of ones and zeros would it take to print the contents of a 16GB of memory from a device, such as a phone

Answers

Printed on paper 31364861.55354 pages of ones and zeros are required to print the contents of a 16GB memory.

To know how many pages of zeros and ones are needed to print the content of a 16GB memory, it is necessary to take into account that each bit is equivalent to a character, that is, a one or a zero.

Additionally, you have to know how many bits are 16GB equivalent.

16GB equals 128000000000bits

Later you have to know how many characters (bits) fit on a page, which are 4081 characters.

So, we divide 128000000000 into 4081

128000000000bits / 4081 = 31364861.55354

According to the above, 31364861,55354 pages are needed to print the content of a 16GB memory.

Learn more in: https://brainly.com/question/2545808

what is the advantage to using multiple cpus (computer processing units)?

Answers

Using multiple CPUs (Computer Processing Units) offers several advantages in computing.

The use of multiple CPUs can enhance the performance of a computer system in several ways. First, it enables the parallel processing of data, meaning that different CPUs can work on different parts of a problem at the same time, allowing for faster computation. Second, it allows for better multitasking, as each CPU can be dedicated to a specific task, reducing the load on the system and improving overall responsiveness. Finally, it enables the use of multi-threaded applications, which can take advantage of multiple CPUs to improve their performance.

Learn more about parallel processing here:

https://brainly.com/question/30726454

#SPJ11

true or false: it is more cost effective for a small start-up company to purchase its own server than to pay for a web hosting company's services.

Answers

It is more cost effective for a small start up company to purchase their own server rather than to pay for a web hosting company's services. (Flase)

What is a web hosting company?

A web hosting service is a type of Internet hosting service that provides clients with the tools they need to build and maintain websites and makes them available on the World Wide Web. Sometimes, web hosting company that offer web hosting services are referred to as web hosts.

Usually, web hosting calls for the following:

the hosting of the websites by one or more servers; Colocation, which provides physical space, electricity, and Internet connectivity for the server(s), may be physical or virtual;setting up the domain name system to give the websites a name and point them to the hosting server(s);running on the host is a web server;

Learn more about web hosting

https://brainly.com/question/16193666

#SPJ4

What's true about freedom
of expression?
A. It's unlimited
B. It allows you to express your ideas
C. It allows you to express your opinions
D. Both B and C

Answers

Answer:

the answer is D. Both B and C

Explanation:

Answer:

its A

Explanation:

because freedom is the what we feel secure we feel free and of course we can do whatever we want


Provide a description of cloud computing. Include the advantages
and disadvantages and business drivers for using cloud
computing.

Answers

Cloud computing is a paradigm that enables convenient, on-demand access to a shared pool of configurable computing resources over the internet. It offers numerous advantages such as scalability, cost-effectiveness, flexibility, and reliability. However, there are also disadvantages, including security concerns, dependency on internet connectivity, and potential vendor lock-in.

Cloud computing refers to the delivery of computing resources, including servers, storage, databases, software, and networking, over the internet. It allows users to access and utilize these resources on-demand, without the need for extensive local infrastructure. One of the key advantages of cloud computing is scalability, as businesses can easily scale their resources up or down based on their needs, thereby optimizing costs and improving efficiency. Additionally, cloud services are typically offered on a pay-as-you-go basis, allowing organizations to save on upfront infrastructure costs and only pay for what they use.

Another advantage is flexibility, as cloud computing enables remote access to resources from anywhere with an internet connection. This facilitates remote work, collaboration, and global accessibility, promoting efficiency and productivity. Moreover, cloud providers often offer high levels of reliability and uptime through redundant systems and data backups, minimizing the risk of data loss or downtime.

However, there are also disadvantages to consider. Security is a major concern, as sensitive data may be stored in the cloud and exposed to potential breaches. Organizations must implement robust security measures and trust the cloud provider's security practices. Furthermore, reliance on internet connectivity becomes crucial, as any disruption in connectivity can affect access to cloud services and impact operations. Additionally, adopting a particular cloud provider's services may result in vendor lock-in, making it difficult to switch providers or migrate to alternative solutions.

From a business perspective, several drivers motivate the adoption of cloud computing. Cloud services enable organizations to be more agile by quickly provisioning resources to meet changing demands. This agility supports innovation, faster time to market, and the ability to scale operations as required. Cloud computing also allows businesses to optimize resource utilization by dynamically allocating and de-allocating resources based on workload fluctuations, thereby maximizing efficiency and cost-effectiveness. Moreover, by moving to the cloud, companies can reduce capital expenditures associated with building and maintaining physical infrastructure, shifting to a more predictable and flexible operational expenditure model.

Furthermore, cloud computing provides access to advanced technologies and services that might otherwise be costly or difficult to implement in-house. This includes machine learning, artificial intelligence, big data analytics, and high-performance computing capabilities, enabling organizations to leverage these technologies for competitive advantage and business growth.

In conclusion, cloud computing offers significant advantages in terms of scalability, cost-effectiveness, flexibility, and reliability. However, it also presents challenges related to security, connectivity, and vendor lock-in. Businesses are driven to adopt cloud computing for its ability to enhance agility, improve resource utilization, reduce infrastructure costs, and access advanced technologies and services. Careful consideration of these factors is essential for organizations seeking to harness the benefits of cloud computing while mitigating associated risks.

Learn more about computing here:

https://brainly.com/question/8645052

#SPJ11

The memory used by the CPU to temporarily hold data while processing is called what?

Answers

RAM, hope this helps
The memory used by the CPU to temporarily hold data while processing is called what?

Answer:

random access memory

Select the correct answer.
Jeff has created a table to calculate the cost of raw materials that he purchases monthly. Cell A2 shows the fixed cost of the raw material (3). Column D lists the
quantity (number of units) that Jeff purchased each month. What formula can Jeff use in E2 to calculate the monthly cost of the raw material that he can copy to all
the rows below?
1 Monthly rate
2
3
4
5
6
7
Month
Jan
Feb
Mar
Apr
May
Jun
D
Number of units Cost
10
8
12
13
10
15
ОА.
=A2*D2
B.
=$A2 D2
ОС.
=$A$2*$D$2
D. =$A$2*D$2
E.
=A$2*D2

Select the correct answer.Jeff has created a table to calculate the cost of raw materials that he purchases

Answers

Answer:ell A2 shows the fixed cost of the raw material (3). Column D lists the quantity (number of units) that Jeff purchased each month. What formula ..

Explanation:

you are working on a time sensitive project and you realize the quality of the code is not satisfactory. how would you handle this situation?

Answers

In a time-sensitive project where the quality of the code is not satisfactory, it is crucial to take immediate action to to improve the quality of the code.

This can be done by following certain steps. Firstly, analyze the code to identify specific areas of concern or improvement. Then, prioritize the critical issues that need to be resolved to ensure the project's success. Next, allocate additional resources or seek assistance from team members to expedite the process. Implement best coding practices, perform thorough testing, and consider refactoring if necessary. Regularly communicate with stakeholders to manage expectations and provide updates on the progress. By taking immediate action, the quality of the code can be improved and the project can move forward effectively.

You can learn more about stakeholders at

https://brainly.com/question/30241824

#SPJ11

chad has written the majority of his code in scratch and is ready to start thinking of test cases to make sure that his program functions properly, and when issues arise, fix them. chad is also going to show his program to his classmate and ask for any feedback or changes he could add to make his program better. this process is known as what?

Answers

The process is known as Iterative Development Process.

What is the meaning of Iterative process?

A project, product, or initiative is built, improved, and refined through the iterative process. The iterative development method calls for teams to produce, test, and rewrite until they are happy with the final product. An iterative approach can be compared to a trial-and-error methodology that advances your project toward its eventual goal.

Iterative processes are a key component of agile project management and lean techniques, although they may be used by any team, not only those that use agile approaches. You will make adjustments to your design, product, or project over the course of the iterative process until you and your team are happy with the project's final deliverable.

To learn more about iterative process, use the link given
https://brainly.com/question/26995556
#SPJ1

question in the photo​

question in the photo

Answers

A, spectator i believe. Spectator usually means to wat ch.

Answer:

Spectator

Explanation:

which use cases indicate that a non-relational database might be a better solution than a relational database? (select two.)

Answers

The option of  use cases that indicate that a non-relational database might be a better solution than a relational database are

A. Horizontal scaling for massive data volume

C. Data with unpredictable attributes

What is the non-relational database  use

Databases that are non-relational and have been designed for distributed architectures are more effective for horizontal scaling, particularly when it comes to managing large volumes of data.

By distributing data across multiple nodes, they are able to handle sizable amounts of information effectively, resulting in increased performance and scalability.

Learn more about  non-relational database  from

https://brainly.com/question/15733057

#SPJ4

Which use cases indicate that a non-relational database might be a better solution than a relational database? (Select TWO).

A. Horizontal scaling for massive data volume

B. ACID compliance for all database transactions

C. Data with unpredictable attributes

D. Strong read-after-write consistency

E. High availability and fault tolerance

design an instrumentation amplifier on tinkercad software with
help of breadboard, Operational amplifiers and show clearly
connections?

Answers

Design an instrumentation amplifier using Tinkercad software and breadboard, operational amplifiers and showed connections. This circuit is useful for amplifying low-level signals with high accuracy.

In order to design an instrumentation amplifier on Tinkercad software using a breadboard, operational amplifiers and show connections clearly, follow these steps:

In order to design the circuit, we will require the following components:

Operational Amplifiers

Breadboard

2 resistors

Multimeter

Potentiometer

Now, we can proceed to design the circuit by following the below steps:

1. Place the first operational amplifier on the breadboard.

2. Connect the 5V supply to the V+ pin of the amplifier.

3. Connect the ground to the V- pin of the amplifier.

4. Place the second operational amplifier next to the first one.

5. Connect the V+ pin of the second amplifier to the V+ pin of the first amplifier.

6. Connect the V- pin of the second amplifier to the V- pin of the first amplifier.

7. Connect a 1 kΩ resistor between the output of the first amplifier and the input of the second amplifier.

8. Connect a 1 kΩ resistor between the output of the second amplifier and the inverting input of the second amplifier.

9. Connect a 10 kΩ potentiometer between the non-inverting input of the first amplifier and ground.

10. Connect a 1 kΩ resistor between the non-inverting input of the first amplifier and the output of the second amplifier.

11. Connect the input signal to the non-inverting input of the first amplifier.

12. Connect the output to the load.

13. Connect the output of the second amplifier to a multimeter to measure the output voltage.

Explanation: An instrumentation amplifier is an amplifier that is designed to amplify low-level signals with high accuracy. It is used in a variety of applications, including medical and industrial equipment.

The instrumentation amplifier is a differential amplifier that has a high input impedance, a high common-mode rejection ratio (CMRR), and a low output impedance. It is usually used to amplify the output of a sensor or transducer, such as a thermocouple or strain gauge.

Conclusion: In conclusion, we have successfully designed an instrumentation amplifier using Tinkercad software and breadboard, operational amplifiers and showed connections. This circuit is useful for amplifying low-level signals with high accuracy.

To know more about software visit

https://brainly.com/question/15937118

#SPJ11


3. Rajat wants to assign green colour to a paragraph. Write the code that will help him in completing the task
Answer fast , will mark branliest .​

Answers

Explanation:

use the style attribute

3. Rajat wants to assign green colour to a paragraph. Write the code that will help him in completing

If you think about designing a really complicated webpage with HTML, what are some challenges that you could face?

Answers

Answer:

Some challenges you could face when designing a really complicated web page with HTML are that the functions are different and if you don't know the code or there isn't any code for what you want to do you would need to find another way to get the result you want.  

Explanation:

it's what i put down (i got it right so i hope this can help)

Answer:

I'm just here so the other person can get brainliest <3

Explanation:

Other Questions
According to Alexis de Tocquevilles democracy in America which value made America a successful democracy because the government should keep a "hands off" approach to the economy? A)egalitarianism B)individualism C)laissez-faire D)liberty The illusion of movement produced when a series of images are briefly flashed as in an animated motion picture is called what Income statement information for Lucy Company is as follows: Sales $175,000 Cost of merchandise sold 105,000 Gross profit $ 70,000 Required: Prepare a vertical analysis of the income statement for Lucy Company. Lucy Company Vertical Analysis of the Income Statement Amount Percentage Sales $175,000 fill in the blank 1% Cost of merchandise sold 105,000 fill in the blank 2% Gross profit $70,000 fill in the blank 3% what is a plant that produces seeds but not flowers? Research about SCR, DIAC, TRIAC and IGBT, explain their main features and functions. Helppppppppppppppppppppppppppppppasap How do I solve this please Explain how cancerous cell growth differs from normal cell growth. PWEASE HELPPP!! Ben and Jerry are driving to Chicago and it takes 270 miles to get there. Theyhave already traveled 42 miles and are driving 75 mi/h. Write a function thatmodels the distance they drive as a function of time. i need help and i need it now rock a contains a high percentage of radioactive uranium and a small percentage of lead. where would you be more likely to find rock a? options near an oceanic ridge in a subduction zone far from an oceanic ridge in one of the oldest continental rocks What is "matched" between donor tissue and recipient in order to increase the likelihood of a successful transplantation?a) antigensb) allergensc) Toll-like receptorsd) MHC proteinse) Antibodies Why are Spanish exclamation marks upside down? To complete this stretch sit on the floor with your feet touching bottom to bottom and knees out to the sides.ButterflyDragonflyV stretchSit and reach Which choice is a linear function?ExplainPlease Help Solve for x Help pls watson foods, inc. reported the following transactions during september: a) the business received cash and issued common stock. it was credited to common stock. b) the business purchased office equipment for for which cash was paid and the balance was put on a note payable. c) paid insurance expense of cash. d) paid the september utility bill for cash. e) paid cash for september rent. f) the business had sales of in september. of these sales, % were cash sales, and the balance was credit sales. g) the business paid cash for office furniture. assuming the total liabilities balance is zero at the beginning of september, what is the total liabilities balance at the end of september? dr. kaunfer is conducting a study of whether lack of exercise might affect memory. he assigns research participants to a no-exercise group or to a daily exercise group prior to completing a memory test. those who exercise daily were assigned to the_____ group. a person is surrounded by noise and hears a friend call out to them. they focus their attention to hear the friends voice and identify where the friend is. what characteristic of attention does this situation describe? responses HELP pleeeeease, will give brainliest