string is a primitive data type arrays.copyof() can be used to make a true copy of an array. a class cannot overload its constructors. a method can change the contents of the original variable passed to it. original refers to the variable in the code calling the method (and not the variable local to the method). a try block can only have one catch block following it. wrapper classes provide a way to use primitive data types as objects. an abstract class cannot have non-abstract methods. an interface can implement another interface. a finally block is always executed regardless of whether an exception is thrown. a class can have only one constructor
Please explain 5-10 & check whether 1-5 is all false.

Answers

Answer 1

Below is the answer containg each sub-question of the given primitive data type arrays.copyof() question:

Step-by-step solution:

Answer 1:False

String is the primitive data type: False, it is the class

Answer 2:

Arrays.copyOf(): False

It will create a shallow copy rather than a deep copy.

Answer 3:False

class can overload its constructors

Answer 4:False

not always.. for arrays it can but not for normal variables

Answer 5:False

try can have any number of catch blocks

followed by Child to Parent

Answer 6: true

they provide auto boxing and unboxing concepts

Answer 7: false

An abstract class could have both the abstract methods and the non-abstract methods.

Answer 8: False

interface can't implement other interface

it can any extend other interfaces

Answer 9:true

finally will execute always

Answer 10:false

it can have any number of arguments

To know more about array, visit: https://brainly.com/question/19634243

#SPJ4


Related Questions

Write a white paper or PowerPoint presentation demonstrating that you understand the essential elements of a patch
management program. Evaluate at least three patch management software solutions, recommend one, and describe why
you are making this recommendation
Use the list provided in the lesson as your template and search the Internet for information on patch management
concepts and vendor solutions to help create your plan.

Answers

Answer:

When is this due?

Explanation:

I will write it

differences between word processor and typewriter​

Answers

The differences between word processor and typewriter​ are given below:

Word Processor:

Documents can be saved, printed, and shared electronically.

Multiple documents can be open simultaneously, and changes can be easily made and undone.

Word processors often include templates for various document types like resumes, letters, and reports.

Typewriter:

A typewriter is a mechanical device used for writing and producing printed text on paper.

It uses individual keys for each character and requires manual effort to press the keys and produce text.

Typewriters offer limited formatting options, typically only allowing for basic text alignment and bold or underline options.

Corrections are more difficult on a typewriter, often requiring correction fluid or erasing and retyping.

Read more about word processors here:

https://brainly.com/question/29762855

#SPJ1

which will touch the ground first an elephant or a rock?

Answers

Answer:

rock!

Explanation:

the rock is lighter so it will fall faster, hope this helps :)

Answer: Elephant.

Explanation:

A rock is lighter so it won't fall as easily!

Jasmine is a commercial artist her is is the one most often used by graphic designers publishers and others in her field the os she most likely uses is
Windows
MS-DOS
Max
Linux

Answers

OS is for mac so she used the mac computer

I need help, I don’t understand what am I doing wrong.
I am suppose to make a bracelet that is a pattern of circle(orange) then rectangle (blue), etc. Than somehow make it vertical on the screen. Any help is GREAT!

I need help, I dont understand what am I doing wrong.I am suppose to make a bracelet that is a pattern

Answers

The div with the class "bracelet" in the HTML code is composed of numerous divs in the appropriate pattern with the classes "circle" and "rectangle."

How can I make an HTML div circular?

We can modify the element's border-radius to create a circle. The element's corners will be rounded as a result. If we set it to 50% it will produce a circle. We will obtain an oval if you specify a different width and height.

<div class="bracelet">

<div class="circle"></div>

<div class="rectangle"></div>

<div class="circle"></div>

<div class="rectangle"></div>

Div with class="circle">

<div class="rectangle"></div>

<!

— as needed, add more rectangles and circles —>

</div>

To know more about HTML code visit:-

https://brainly.com/question/13563358

#SPJ1

Why does the evolving technology help the entrants more than the incumbents? 1) Because the incumbents do not have the means to use the new technology 2) Because the entrants can create technology faster than incumbents 3) Because incumbents do not like new technology and neither do their customers 04) Because the entrants can use the technology to target customers that do not currently have solutions 5) Because the incumbents already have a strong customer base and do not see the point of adding new technology Which one of the following factors contributes to enterprises becoming successful in the long run? 1) By leveraging the technological core and their business model. 2) The ability to understand the consumer better and create products that solve their consumers' job. 3) Plan and forecast based on correlated data. 4) By keeping all of the elements of servicing the customer under their control. Which statement best describes the "Theory of Disruptive Innovation"? 1) Disruptive Innovation is the process by which technology eliminates friction and improves efficiency within various e-commerce, retail, and commercial banking transactions. 2) Disruptive Innovation is the process by which technology enables entrants to launch inexpensive and more accessible products and services that gradually replace those of established competitors. 3) Disruptive Innovation is the process by which technology generates data for. and executes instructions from, Al-enabled systems within retail and manufacturing industries. Disruptive Innovation is the process by which technology enables entrants to launch inexpensive and more accessible products that work collectively with today's comparable market offerings. 5) None of the above. 4)

Answers

Evolution of technology helps the entrants more than the incumbents because entrants can use technology to target customers that do not currently have solutions. Entrants can create technology faster than incumbents, and they are not limited by legacy systems that incumbents are stuck with.

They have the agility to innovate and change direction as necessary to keep pace with technological advances. The incumbents are at a disadvantage because they have already established customer bases and a strong reputation, and they are unlikely to be willing to risk losing that by adopting new technology that may not be as reliable as what they already have. So, the evolving technology helps the entrants to compete with the incumbents.



One of the factors that contributes to enterprises becoming successful in the long run is the ability to understand the consumer better and create products that solve their consumers' job. By leveraging the technological core and their business model, businesses can ensure that their products are meeting the needs of their customers. Plan and forecast based on correlated data is another important factor in the success of enterprises.

Learn more about Evolution of technology: https://brainly.com/question/7788080

#SPJ11

hris has received an email that was entirely written using capitalization. He needs to paste this text into another document but also ensure that the capitalization is removed.

What should Chris do?

Answers

He should un caps lock it

Write a full and complete recursive implementation of the Binary Search Algorithm such that you find your target element 21 in O(log2(n)) time complexity overall and O(1) space complexity. Here, n is the length of the list of input integers (array). We will not be considering any memory used by recursion.

Answers

The recursive implementation of the Binary Search algorithm efficiently finds a target element in a sorted list by repeatedly dividing the search space in half, achieving a logarithmic time complexity.

The Binary Search Algorithm is a divide-and-conquer approach to efficiently search for a target element in a sorted list. The recursive implementation follows these steps:

Check the middle element of the list.

If it matches the target, return its index.

If the target is smaller, recursively search the left half of the list.

If the target is larger, recursively search the right half of the list.

Repeat the process until the target is found or the search space is empty.

By dividing the search space in half at each step, the algorithm achieves a logarithmic time complexity of O(log2(n)), where n is the length of the input list. The space complexity is O(1) as the recursion does not require any additional memory beyond the input list.

For more information on implementation visit: brainly.com/question/28789445

#SPJ11

V
(1 point)
8 of 15
A
Daniella is editing the camera in her workspace. If she wants to define the aspect
ratio of her product, what should she use?
!!!

V(1 point)8 of 15ADaniella is editing the camera in her workspace. If she wants to define the aspectratio

Answers

Daniella is editing the camera in her workspace. If she wants to define the aspect ratio of her product, the tool she should use is: Field of View (Option  D)

What is an Aspect Ratio?

The field of view (FOV) is the area of the visible world that is visible at any given time. It is a solid angle through which a detector is sensitive to electromagnetic radiation in the case of optical instruments or sensors.

It refers to the covering of a whole region as opposed to a single fixed focal point. FOV also refers to the angle at which a person may view the observable environment. The greater the FOV, the more of the viewable world may be seen. It is calculated in three dimensions: horizontally, vertically, and diagonally.

Field of View (FOV) refers to the angle of view of the lens. For Optris IR cameras, the range depends on the lens from 4° (telephoto lens) to 90° (wide angle lens). The size of the image area depends on the distance between the measuring object and the camera.

Learn more about Aspect Ratio:
https://brainly.com/question/23902291
#SPJ1

FILL IN THE BLANK. This type of software allows students to record, sort, mathematically analyze and represent numerical data in tabular and/or graphical forms. ___

Answers

Spreadsheets  software is a type of software allows students to record, sort, mathematically analyze and represent numerical data in tabular and/or graphical forms.

Why do people use spreadsheets?

One tool for storing, modifying, and analyzing data is a spreadsheet. A spreadsheet's data is arranged in a series of rows and columns, where it can be searched, sorted, calculated, and used in a number of charts and graphs.

Therefore, A program known as a spreadsheet, also referred to as a tabular form, is used to arrange data into rows and columns. This information can then be arranged, sorted, calculated (using formulas and functions), analyzed, or graphically represented to illustrate.

Learn more about Spreadsheets from

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

LMK ASAP PLEASE
what is the name of the concept that programmers use to be able to make decisions in programming?

A. parameters
B.procedures
C.conditional statements D.arguments

Answers

Answer: I belive the answer to be (C)

Explanation:

A company uses cell phones that do not have SIM cards and can only be managed by a specific
network provider. The company wants to buy 3G cell phones that have SIM cards so they can switch to
any chosen provider. What network type best suits the company's needs?
A. GSM
B. CDMA
C. PRL
D. LTE

Answers

Based on the company's requirement to switch to any chosen network provider, the network type that best suits their needs is GSM (Global System for Mobile Communications).

GSM is a widely adopted standard for mobile communication and is used by the majority of the world's cellular networks. One of the key advantages of GSM is its use of SIM cards (Subscriber Identity Module). SIM cards allow users to easily switch between different network providers by simply swapping out the SIM card in their device. This flexibility provides the company with the freedom to choose the network provider that offers the best coverage, pricing, and services for their specific needs.

On the other hand, CDMA (Code Division Multiple Access) is another network technology used in cellular communication. Unlike GSM, CDMA does not utilize SIM cards. CDMA phones are typically tied to specific network providers and do not offer the same level of flexibility when it comes to switching between providers. Therefore, CDMA is not the best network type for the company's requirement to have the ability to switch to any chosen provider.

PRL (Preferred Roaming List) is not a network type but rather a list that CDMA phones use to prioritize which networks to connect to when roaming. It is not directly relevant to the company's requirement.

LTE (Long-Term Evolution) is a 4G wireless communication standard that provides high-speed data transmission. While LTE is an advanced network technology, it does not specifically address the company's need for flexibility in switching network providers.

In summary, the network type that best suits the company's needs for switching to any chosen provider is GSM.

For more questions on network

https://brainly.com/question/28342757

#SPJ11

Which of the following would be studied using an Earth-observing satellite?
tracking changes in land used for corn production
tracking heat and energy being released by the earth
O tracking atmospheric changes resulting from volcanic eruptions
tracking cloud cover and its relationship to global warming
Help plz will give BRAINLYIST

Answers

Answer:

climate is what you expect and weather is what you get. More formally, climate is the long-term average of temperature, precipitation, and other weather variables at a given location

Explanation:

Answer:

Geography

Explanation:

Is this a desktop or a computer, or are they the same thing

Is this a desktop or a computer, or are they the same thing

Answers

Answer:

Same thing.

Explanation:

(50 POINTS!) Select the correct answer.

A website sells illegal and counterfeited materials. According to which law can the US Attorney General seek a court order to request service providers to block access to that website?

A. Copyright Act
B. Digital Millennium Act
C. SOPA
D. PIPA

Answers

Answer:

Digital Millennium Act

Explanation:

not sure

Answer:

Copyright Act

Explanation:

I'm not completely sure, but the copyright act is the original creators of products and anyone they give authorization to are the only ones with the exclusive right to reproduce the work.

which are three powerpoint options that can be customized?

•Marcos, Themes, Ribbon tabs
•Ribbon yabs, templates, marcos
•user name, themes, Quick Acess buttons
•AutoSave file location, Print options, templates

Answers

Answer:

There are many PowerPoint options that can be customized, but here are three examples:

Themes: PowerPoint themes allow you to change the overall look and feel of your presentation. You can choose from a variety of pre-designed themes, or create your own by customizing colors, fonts, and backgrounds.

Slide layouts: You can customize the layout of each slide in your PowerPoint presentation. This includes adding or removing content boxes, changing the size and position of images and text, and adjusting the overall design of the slide.

Animations and transitions: PowerPoint allows you to add animations and transitions to your slides to make your presentation more dynamic and engaging. You can customize the type and duration of animations and transitions, as well as the direction and timing of each effect.

Explanation:

Answer:

user name, themes, Quick Access buttons

Explanation:

In the lesson, you learned about the various uses of computers in manufacturing, from design to the control of manufacturing processes. Write a short report about the advantages and main features of CAD. Discuss the main applications of CAM as well.

Answers

Some of the main features of Computer Aided Design:
(CAD) are:

Modeling in solids.Engineering drawings are created from solid models.Surface modeling in freeform.Assemblies are collections of pieces and/or other assemblies that are designed automatically.Design components can be reused.

Glassworking, woodturning, metallurgy and spinning, and graphical refinement of the entire production technique are some of the key uses of the Computer Aided Manufacturing (CAM) system. CAM systems are used to create solids of rotation, flat surfaces, and screw threads.

What is CAD?

The use of computers to help in the development, alteration, analysis, or optimization of a design is known as computer-aided design.

This program is used to boost the designer's efficiency, improve design quality, improve communication through documentation, and develop a database for production.

Learn more about Computer Aided Manufacturing:
https://brainly.com/question/14039774
#SPJ1

Why error occurs during transmission? Explain different types of errors with suitable examples. 5 (b) How do you detect error using CRC? Generate the CRC code for the data word 1101011011 The divisor is x4+x+1. 7

Answers

During transmission, errors occur due to a variety of factors such as atmospheric conditions, system malfunction, or network errors.

Different types of errors include Single Bit Error, Burst Error, and Burst Error Correction. Here are the different types of errors with suitable examples: Single Bit Error: It occurs when one bit of data is changed from 1 to 0 or from 0 to 1 in data transfer. This type of error is mainly caused by a small amount of interference or noise in the transmission medium. For instance, a parity bit error.Burst Error: It occurs when two or more bits are incorrect during data transmission. A Burst Error occurs when bits of data are lost or changed in groups, which can affect multiple data bits at once. It can be caused by signal loss or attenuation in fiber-optic cables. Burst Error Correction: To overcome the issue of Burst Error, Burst Error Correction is used. This method divides data into blocks to detect and fix errors. Reed-Solomon coding and Viterbi decoding are two types of burst error correction techniques. There are different techniques for error detection, and the Cyclic Redundancy Check (CRC) is one of them. CRC checks the checksum at the receiver's end to ensure that the data was not corrupted during transmission. To detect errors using CRC, follow these steps: Divide the data word by the generator polynomial. Generator polynomial: x4 + x + 1 Divide 1101011011 by x4 + x + 1 and find the remainder by using the modulo 2 division method.1101011011 10011- 10011000- 10011000- 10010100- 10010100- 10000001- 10000001- 1111100- 1111100- 1001The remainder of the above step is the CRC code of the data word, which is 1001. Therefore, the CRC code for the data word 1101011011 is 1001.

know more about type of error.

https://brainly.com/question/31751999

#SPJ11

Write a program in java to input N numbers from the user in a Single Dimensional Array .Now, display only those numbers that are palindrome

Answers

Using the knowledge of computational language in JAVA it is possible to write a code that  input N numbers from the user in a Single Dimensional Array .

Writting the code:

class GFG {

   // Function to reverse a number n

   static int reverse(int n)

   {

       int d = 0, s = 0;

       while (n > 0) {

           d = n % 10;

           s = s * 10 + d;

           n = n / 10;

       }

       return s;

   }

   // Function to check if a number n is

   // palindrome

   static boolean isPalin(int n)

   {

       // If n is equal to the reverse of n

       // it is a palindrome

       return n == reverse(n);

   }

   // Function to calculate sum of all array

   // elements which are palindrome

   static int sumOfArray(int[] arr, int n)

   {

       int s = 0;

       for (int i = 0; i < n; i++) {

           if ((arr[i] > 10) && isPalin(arr[i])) {

               // summation of all palindrome numbers

               // present in array

               s += arr[i];

           }

       }

       return s;

   }

   // Driver Code

   public static void main(String[] args)

   {

       int n = 6;

       int[] arr = { 12, 313, 11, 44, 9, 1 };

       System.out.println(sumOfArray(arr, n));

   }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Write a program in java to input N numbers from the user in a Single Dimensional Array .Now, display

Which actions would help to increase a company's rating with the Better Business Bureau? Select the two correct answers. (1 point)
increasing the wages of employees
**
O maintaining transparent business practices
Oignoring complaints until they are reported to the BBB
Ohiding practices that would paint the company in a negative light
honoring commitments made to the BBB

Answers

Answer:

1: A. phishing

2: D. https

3: A It is a government agency that makes sure financial companies treat consumers fairly.

4: A. honoring commitments made to the BBB; C. maintaining transparent business practices

5: B. to prevent someone using that information to secure goods, services or access to money using the victim’s credit or bank account information

Explanation:

100% CA

Answer: Consumer Protection Agencies Quick Check

Explanation:

1. The customer should file a complaint with the CFPB because it oversees complaints with financial institutions.

2. It is a government agency that makes sure financial companies treat consumers fairly.

3. Honoring commitments made to the BBB. Maintaining transparent business practices.

4. The consumer is better off only researching the company with the Better Business Bureau.

5. A nonprofit organization designed to help consumers find trustworthy companies.

Were the colonists loyal to the British king after the war began? WILL GIVE BRANLEST PLS ASAP

Colonists were loyal to the French once the American Revolution began.
Colonists were never loyal to the king, so the war didn’t change anything.
There was no more British loyalty in the American colonies once the war began.
The colonists still felt loyalty for their king even after the start of the war.

Answers

Answer:

There was no more British loyalty in the American colonies once the war began.

Explanation:

The American Revolution began in 1775 as a response to the absolutist policies imposed by King George of Great Britain, specifically in economic and political matters, on the Thirteen Colonies and their citizens.

During the reign of King George, many civil, political and economic freedoms were suppressed (through the Intolerable Acts and other similar regulations), with which popular support for the monarchy was gradually losing size. Thus, new liberal ideologies began to appear, based on the postulates of philosophers such as John Locke or Jean Jacques Rousseau, who promoted the freedom of the individual and the respect of their natural rights as the fundamental premises of social organization.

For this reason, at the time of the Revolution, most of the settlers were pro-independence, while small minorities continued to support Great Britain. Precisely, these minorities, after the advance of the armed conflict, began to move towards what is now Canada, which continued to be a British stronghold.

Answer:

The colonists still felt loyalty for their king even after the start of the war.

Explanation:

Loyalists were American colonists who remained loyal to the British Crown during the American Revolutionary War, often referred to as Tories, Royalists or King's Men at the time. They were opposed by the Patriots, who supported the revolution, and called them "persons inimical to the liberties of America."

tone to mera barosa tora kotte​

Answers

Answer:

yo thx for points

lakin yeh kaya likha ha (..

Stealing a computer, using a bootdisk to erase all data on the drives, or simply unplugging computers are all effective __________ attacks. denial-of-service (DoS) road apple man-in-the-middle eavesdropping

Answers

Stealing a computer, using a boot disk to erase all data on the drives, or simply unplugging computers are all effective data attacks.

In computing, a drives is a physical or logical storage device used to store and access data. Physical drives include hard disk drives (HDDs), solid-state drives (SSDs), optical drives (CD/DVD/Blu-Ray), and flash drives. Logical drives, on the other hand, are created by partitioning a physical drive and can be formatted with a file system, such as NTFS or FAT, to store and organize data. Drives are used to store operating systems, software applications, documents, media files, and other types of data. They can be connected to a computer using various interfaces such as SATA, USB, or Thunderbolt, and can be managed using operating system tools such as Disk Management on Windows or Disk Utility on macOS.

Learn more about drives here:

https://brainly.com/question/13186587

#SPJ11

Which QoS quality issue is defined as an uneven arrival of packets into a receiver?
A) Jitter
B) Delay
C) Sway
D) Flaps

Answers

A) Jitter,  Jitter is the QoS quality issue that is defined as an uneven arrival of packets into a receiver. It refers to the variation in the delay of packet arrival at the receiver side. In other words, it is the inconsistency in the timing of packet delivery, resulting in a fluctuating delay between packets.

Jitter can negatively impact the quality of real-time communication applications such as voice over IP (VoIP) or video streaming. It can lead to issues such as choppy or distorted audio/video, gaps in communication, and reduced overall quality.

To mitigate jitter, various techniques can be employed, such as buffering, packet prioritization, traffic shaping, and jitter buffers. These mechanisms help to smooth out the arrival of packets and reduce the variation in packet delay, ensuring more consistent and reliable transmission of data.

Jitter is the QoS quality issue that refers to the uneven arrival of packets into a receiver. It can disrupt real-time communication applications and requires mitigation techniques to ensure smoother packet delivery and consistent data transmission.

Learn more jitter, visit:

brainly.com/question/13661659?

#SPJ11

The research and development team will gather important information by first using ________ data.
1. syndicated
2. focus group
3. new
4. secondary
5. primary

Answers

The research and development team will gather important information by first using secondary data. So, option 4 is correct.

Secondary data is already-existing information that has been gathered in the past for a different reason. This can contain data from internal sources within the organization, as well as external sources such as public reports, government statistics, and market research studies.

The research and development team can save time and costs by utilising secondary data instead of starting from scratch with new data collection. Companies can also discover important information that can guide their research and development activities, such as market trends, client preferences, and other pertinent data.

To know more about Secondary data

brainly.com/question/11105968

#SPJ4

Question 14 of 25
A computer programmer will often use a
by other programmers.
, which includes code written

Answers

A computer programmer often uses a programming language to write code that other programmers can understand and utilize.

How is this so?

Programming languages provide a set of syntax and rules that allow programmers to create software and applications.

By using a standardized programming language, programmers can communicate their ideas effectively and share code with others.

This promotes collaboration,reusability, and efficiency in software development, as code can be easily understood, modified, and built upon by different programmers.

Learn more about computer programmer at:

https://brainly.com/question/29362725

#SPJ1

Pls will get brinliest and 100 points.
Pedro is typing an email to several family members to share information about an event he's planning. What part of the email would he use to share the date and time of the event?


Question 1 options:


greeting



purpose



closing



signature

Answers

I agree it’s the correct answer is B

The part of the email would he use to share the date and time of the event is purpose. Thus, option B is correct.

What is an email?

The exchange of computer-stored messages from one user to one or more recipients via the internet is known as email (or electronic mail). Email is used for a variety of things, such as getting in touch with friends, talking to professors and bosses, getting information, and submitting applications for employment, internships, and scholarships.

Emails are a convenient, affordable, and quick way to communicate for both personal and professional purposes.Your messaging' formality, target audience, and desired results will change depending on your goals. He can disclose the event's date and time in the email's purpose section.

Therefore, The part of the email would he use to share the date and time of the event is purpose. Thus, option B is correct.

Learn more about email on:

https://brainly.com/question/14380317

#SPJ2

Secondary storage is also known as the ‘main memory’

Answers

Answer:

False

Explanation:

The main memory is called RAM (Random Access Memory). This is where all programs and variables in the computer live, and also it is the fastest storage.

Secondary storage would be your hard drive, USB, CD, floppy disk.

What is the output of this program? numA = 10 for count in range(5): numA = numA + 2 print (numA)​

What is the output of this program? numA = 10 for count in range(5): numA = numA + 2 print (numA)

Answers

Answer:

20

it runs the code 5 times, 10+2+2+2+2+2 basically. E.g 20

Answer: 20

Explanation: got  it right on edgen

clock speed and cpu design are factors that determine how fast instructions are executed.T/F

Answers

True, clock speed and CPU design are factors that determine how fast instructions are executed.

The clock speed of a CPU (Central Processing Unit) is measured in gigahertz (GHz) and indicates how many cycles per second the CPU can execute. The higher the clock speed, the more instructions a CPU can execute in a given amount of time. However, clock speed is not the only factor that determines CPU performance.

CPU design also plays a crucial role in determining how fast instructions are executed. The design of a CPU determines how many instructions can be executed per clock cycle, as well as how efficiently the CPU can handle complex instructions and data structures. Some CPUs are designed to be optimized for specific types of tasks, such as gaming or video editing, while others are designed for general-purpose computing.

Other factors that can affect CPU performance include cache size, which determines how much data the CPU can access quickly, and the number of CPU cores, which determines how many tasks the CPU can handle simultaneously. Overall, CPU performance is determined by a combination of clock speed, CPU design, and other hardware and software factors.

Learn more about CPU here:

https://brainly.com/question/21477287

#SPJ11

Other Questions
Which of the following is not a persuasive technique used in advertising? Answer the following.1 Bharat borrows a certain sum of money at5% pa. If he pays 2000 as simple interestat the end of the first year, find the sum heborrowed what are the sensory information inventory for the following activities ? * playing catch with a tennis ball Once a firm has gained insights from doing qualitative research, it is likely to engage in Blank______ research, which are structured responses that can statistically be tested. Multiple choice question. quantitative secondary descriptive consumer whoever answers 1st (WITH A CORRECT ANSWER) will be marked brainliest. Posters.com is a small Internet retailer of high-quality posters. The company has $890,000 in operating assets and fixed expenses of $167,000 per year. With this level of operating assets and fixed ex A tank containing 35 gallons of water is leaking at a rate of gallon per minute. The expression to represent this is 35 - m. How many gallons are left after 12 minutes? complete the table by indicating the change in each determinant necessary to increase aggregate demand. PLSS HELP WHICH EVER IS RIGHT IM MARKING BRAINLIEST!!! elish has a chain of outlets that sells baked products. relish requires all its employees to complete a month's training before they can work in the kitchen. this is an example of a . Let f(x) = - 12x + 5 and g(x)=x + 5.Find f(7)/g(7).f(7)/g(7)= the maximum weight, w, that a stepladder can hold is 250 pounds. which inequality represents this situation? Why does the quantity of the water in the beaker NOT matter, but the quantity of the water in the polystyrene cup does? (Use science terminology, refer to the particle theory and talk about thermal equilibrium) Help its for a test grade X-5y=84+5y=7 Given the complex effect that a single drug can have on different neurotransmitters, try to imagine the consequences resulting from the interaction of multiple drugs. Which equation shows the point-slope form of the line that passes through (3, 2) and has a slope of ?1/3Oy + 2 = (x+3)Oy -2=(x-3)Oy+ 3 = (x + 2)Oy-3=(x-2) Which of the following statements describes erosion?A.Breakdown of rocks by wind water and iceB. A build-up of rocks into a pileC. Breakdown of water by ice and windD. Movement of rocks by water, air, gravity, and iceplease help with my science quiz! In the text, the author describes how Conor is working on himself while in prison and helping others. Do you think this is enough for Conor to be redeemed? Why or why not? Two functions are shown below.Which statement best describes the two functions? f(x)=350x + 400g(x) = 200(1.35)A) f(x) is always less than g(x)B) f(x) always exceeds g(x)C) f(x) < g(x) for whole numbers less than 10.D) f(x) > g(x) for whole numbers less than 10. Erin has 5 cans of juice and drinks 1/3 of a can daily. in how many days will she empty all the cans she has? I think it's 1/15 I'm not sure though.