with linear indexing, what is the integer index array to display the cmat(1,1) and the cmat(2,2) as a column?

Answers

Answer 1

The integer index array to show cat (1,1) and cat (2,2) as a column when using linear indexing is cMat ([1;4]).

What is meant by linear indexing?A linear index is an index file that is structured as a series of key-value pairs, with the keys in sorted order and the pointers either Pointing to the position of the entire record on disc.Pointing to the position of the primary key in the primary index.Actually being the primary key value. A way to choose a subset of items from a matrix is by indexing into it. The various indexing styles available in MATLAB are not only strong and adaptable, but also readable and expressive. For MATLAB to successfully translate matrix-oriented concepts into comprehenisble computer programmes, indexing is essential.

To learn more about linear indexing, refer to:

https://brainly.com/question/26533500


Related Questions

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

How can Microsoft PowerPoint help me in my studies?

Answers

Answer:

It can be used by teachers and students as a way of creating slideshows. PowerPoint allows users to share the presentations live, in the room, as well as digitally online via a video conference interface. Students can also work through a presentation in their own time, making this a versatile way to communicate.

Explanation:

HOPE IT HELPS!!!!!!!!!!!

Select the correct word to complete the sentence.
_______connections tend to be more reliable, secure, and faster than______
connections.
______connections tend to be more convenient than_______
allowing users to be more mobile.

Answers

Answer:

Wired, Wireless, Wireless, Wired

Explanation:

Answer:

Wired connections tend to be more reliable, secure, and faster than wireless connections. While wireless connections tend to be more convenient, allowing users to be mobile. Many businesses and homes use a combination of wired and wireless.

Explanation:

Edge 2022

Select the correct word to complete the sentence._______connections tend to be more reliable, secure,

Which statement is true about the speed of light? It travels fastest in air. It travels fastest in a vacuum. It travels the slowest in glass. It travels the slowest in water.

Answers

It travels slowest in water

what level of dod clearance do you currently hold ? security clearance level security clearance level

Answers

Level of dod clearance is confidential. There are three levels of security clearance: confidential, secret, and top secret.

A security clearance is a determination by the government that an individual is eligible for access to classified information. The process of obtaining a security clearance involves a background check to verify the individual's loyalty, character, and trustworthiness. The level of clearance required will depend on the sensitivity of the information that the individual will have access to. There are several levels of security clearance, including confidential, secret, and top secret. In order to be eligible for a security clearance, individuals must be U.S. citizens and pass a thorough background investigation. The process can take several months and may require the individual to disclose personal information and undergo a polygraph examination.

Learn more about security clearance here, https://brainly.com/question/18021620

#SPJ4

Invitations cost $6 for a pack of 5. Lori gives the cashier $50 to buy invitations and gets $8 in change. How many packs of invitations does Lori buy?

Answers

Answer: 35

Explanation:

Since Lori gives the cashier $50 to buy invitations and gets $8 in change, thus means that the amount spent on invitations = $50 - $8 = $42

Since he spent $42 and the invitations cost $6 for a pack of 5, the packs of invitations that he bought would be:

= ($42/$6) × 5

= 7 × 5

= 35 packs of invitation

I'm getting pretty desperate plz help me, I'll give brainiest, and ill make a free question worth 100 points this is for coding FLVS



Part 1: Plan and Write the Pseudocode
Using pseudocode, write an algorithm that someone else can follow.
Decide on a question to ask the user. Some ideas include:
What grade are you in?
What sport do you play?
Where did you go on vacation?
Use one variable to store the response.
Use one if-else statement to make a decision based on the user's input.
Display two messages; one for each condition (True and False).
Insert your pseudocode here: (you only need to do one)
Flowchart
Write it out

Get input:

If statement:

Print if true:

Print if false:


Part 2: Code the Program
Use the following guidelines to code your program.
Use the Python IDLE to write your program.
Using comments, type a heading that includes your name, today’s date, and a short description.
Set up your def main(): statement. (Don’t forget the parentheses and colon.)
Write one if-else statement using user input.
Include a print message for both conditions (True and False).
Conclude the program with the main() statement.
Follow the Python style conventions regarding indentation in your program.
Run your program to ensure it is working properly. Fix any errors you may observe.
When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE. When you submit your assignment, you will attach this Python file separately.

Part 3: Post Mortem Review (PMR)
Using complete sentences, respond to all the questions in the PMR chart.
Review Question
Response
What was the purpose of your program?

How could your program be useful in the real world?

What is a problem you ran into, and how did you fix it?

Describe one thing you would do differently the next time you write a program.




Part 4: Save Your Work
Don't forget to save this worksheet. You will submit it for your assessment.

you can also give me a link to your work and ill use it as a guide I will not copy
my g mail is my user name

Answers

Answer:

Pseudocode:

import random

fetch user input on a lucky number

insert input into variable - "response"

new variable, random = randint

condition to check wheather random is our response

display results

Python Code:

import random

def main():

response = int(input("Guess my lucky number, its between 1 and 100: "))

lucky_number = random.randint(1,100)

if response == lucky_number:

print(f"Wow you're right, it is {lucky_number}")

else:

print("Sorry, Try Again")

main()

Reminder:

intended for python3 as i included the format f

also it could be done without the import, just manually insert a number

i'll leave the post mortum to you

Explanation:

Which. Option tilts the image both horizantly and vertically be degrees

Answers

Aaaaaaaeeeeeeeeiiiiiioooooouuuuuu

(20points)
Why did Jinny get an error when she tried to use the variable 1stName?

Variables should be two words.
Variables cannot begin with a digit.
Variables should start with a number.
Variables should always be camelCase

Answers

Answer:

PLEASE LISTEN TO ME!! THE OTHER ANSWER IS WRONG!

Explanation:

The correct anwer is "Variables cannot begin with a digit"

In batch operating system three job J1 J2 and J3 are submitted for execution each job involes an I/O activity a CPU time and another i/o activity job a requires a total of 20 ms with 2 ms CPU time J2 requires 30 ms total time with 6 ms CPU time J3 requires15 ms total time 3 ms CPU time what will be the CPU utilization for uniprogramming and multiprogramming

Answers

Answer:

(A) The CPU time for J1 is =2 ms other time is =18 ms, for J2 CPU time =6 ms other time = 24 ms, for J3 CPU time = 3 ms and other time = 12 ms (B) The CPU Utilization for uni-programming is 0.203 or 20.3% (C) For Multi-programming, when a program is not free and busy with an operation, the CPU is allocated to other programs.

Explanation:

Solution

Given that:

A(1)Job J1 = CPU time = 2ms  

Other time =18 ms

Total time = 20 ms

(2)Job J2 = CPU time 6ms

Other time = 24 ms

Total time = 30 ms

(3)Job J3 = CPU time = 3ms

Other time =12ms

Total time = 15 ms

(B) For the CPU Utilization for uni-programming, we have the following as follows:

CPU utilization =The total time of CPU/The total real time

Thus,

=(2 +6+3) / (18+24+12)

= 11/54

=0.203 or 20.3%

(C) For the CPU utilization for multi-programming,  when a program is not available that is busy in an operation, such as the input and output the CPU can be allocated or designated to other programs

Harry’s Shoe Store has noticed a significant increase of revenue of $123,000. The manager has also determined that the total expenses equal to $128,000. Will this business net a profit or loss? _______ How much of a profit or loss? ________

Answers

Answer: Loss by $5,000

Explanation:

As you see, the loss is greater than profit. Simply subtract loss-profit

_____ includes the technologies used to support virtual communities and the sharing of content. 1. social media 2.streaming 3. game-based learning

Answers

Answer: it’s A, social media

Explanation:

Social media are interactive digital channels that enable the production and exchange of information. The correct option is 1.

What is Social Media?

Social media are interactive digital channels that enable the production and exchange of information, ideas, hobbies, and other kinds of expression via virtual communities and networks.

Social media includes the technologies used to support virtual communities and the sharing of content.

Hence, the correct option is 1.

Learn more about Social Media:

https://brainly.com/question/18958181

#SPJ2

suppose you draw the decision tree for mergesort when applied to an array of 2k elements. what will be the exact length of the longest path in the tree?

Answers

The precise length of the longest path in the decision tree, when applied to an array of 2k elements, will be k if you draw it. In mergesort, the array is split in half repeatedly until each subarray has just one entry.

Popular sorting algorithm Mergesort applies the divide-and-conquer tactic. It operates by splitting an array into two halves, sorting each part repeatedly, and then joining the two sorted parts to create a single sorted array. The approach, which is frequently used for sorting huge datasets, has a time complexity of O(n log n). The fact that Mergesort is a stable sorting algorithm and preserves the relative order of equal elements from the original input in the sorted output is one of its advantages. Mergesort can handle many different forms of data, including linked lists, and is independent of the input array's original order.

Learn more about mergesort here:

https://brainly.com/question/12949027

#SPJ4

What three-key sequence will bring up the task manager or allow a user to log off or restart the computer?.

Answers

Answer:

Ctrl + Alt + Del

Explanation:

Ctrl + Alt + Del are the three sequence that will bring up the task manager or allow a user to log off or restart the computer.

What is the task manager?

A task manager is a system monitor tool in operating systems that provides information on the processes and programs running on a computer, as well as the machine's overall state.

Ctrl, Alt, and Del keys on a computer running the Microsoft Windows operating system that a user may press at the same time to end an application task or reboot the operating system.

Administrators may use Task Manager to terminate programs and processes, alter processing priorities, and configure processor affinity as needed for optimal performance. Furthermore, Task Manager enables the system to be shut down or restarted, which may be required if it is otherwise busy or unresponsive.

Therefore, these three keys are Ctrl + Alt + Del.

Learn more about the task manager, refer to:

https://brainly.com/question/13718327

#SPJ2

Java uses a left/right brace to mark the beginning/end of if-statement, compare this choice with the language which uses the "beginIF/endIF" keywords.


What language uses "beginIF/endIF" and how does it compate to Java left/right braces?

Answers

Answer:

The answer is "Scribe markup language ".

Explanation:

Using the Code is the same processing in 2 stages which can be defined as follows;    

1. by using a scripting language to type a script.  

2. Proceed with both the file and produce the necessary documentation through your scribe compiler. If / endif starts with the reserved keyword.

by using BeginIf / EndIf, it is a type of multiple rules to make comments.  

In the beginning, if / endif, as well as java left-right braces, are no different.  

It uses two blocks or sentences for opening and closing.  

Both use the module to distinguish and both use feature isolation, process, and condition in a separate block when the compiler can understand what statement the method or section is using brackets.  

PL / SQL is also used for endif.  

If the statement to close.  

endif is used in c # as well  

If the rule is often used for closing.

When working with Sendmail, what command can be used to test SMTP support?

Answers

Answer:

"HELO" would be the correct choice.

Explanation:

SMTP seems to be the protocol for transferring emails through one messaging service toward the next. HELO seems to be an SMTP command transmitted by someone with an email server that recognizes yourself when you communicate to some other email server to begin the mail transmitting procedure. It is accompanied either by a domain name including its email address that is sent.

Answer:

HELO/EHLO.

Explanation:

Simple Mail Transfer Protocol (SMTP) is a protocol followed while sending an electronic mail or receiving it. It is a TCP/IP protocol (a protocol used to interconnect in communication protocols).

To test Simple Mail Transfer Protocol (SMTP), the HELO/EHLO command is used. There are several other commands in SMTP, which is used to communicate properly.

The HELO command is a type of command in SMTP which is used to test or initiate SMTP communication. HELO/EHLO are the commands which are used to test SMTP communication. They are used interchangebaly.

Thus the correct answer is HELO/EHLO command is used to test SMTP support.

a diagram of a flow chart to find the average of 10 numbers​

Answers

Answer:

Kindly check attached picture

Explanation:

Flowchart gives a graphical representation of a steps taken towers the execution of a program.

In the flowchart attached, A variable was initialized and set to 0 ; then a for loop was used to iterate integers 1 up to 10, for each number. It is added to the initialized variable sum until all the 10 integer numbers are added. The the average is obtained by dividing by 10.

a diagram of a flow chart to find the average of 10 numbers

Refer to the exhibit. Baseline documentation for a small company had ping round trip time statistics of 36/97/132 between hosts H1 and H3. Today the network administrator checked connectivity by pinging between hosts H1 and H3 that resulted in a round trip time of 1458/2390/6066. What does this indicate to the network administrator

Answers

Answer:

Explanation:

https://examict.com/refer-to-the-exhibit-baseline-documentation-for-a-small-company-had-ping-round-trip-time-statistics-of-36-97-132-between-hosts-h1-and-h3-today-the-network-administrator-checked-connectivity-by-pingi/

adds and removes printers or fax machines using add printer wizard

Answers

Answer:

1.Adds and removes printers or fax machines using add printer wizard.

2.Customized elements for pointing device.

3.change or customized how folders behave in windows.

4.creative things for managing power options on your computer.

5.configure our customized options for dialing with connected phone or modem device.

6.make windows more accessible for people with physical challenges or disabilities.

7.change screen appearance.

8.setup how taskbar or start menu appears or behaves.

9.provide system information and advanced settings.

10.configure network adapter cards, services and protocols or join workgroup/domain.

Explanation:

If you Buy my group clothing in R.o.b.l.o.x for a donation i will make you brainliest
My group is One Percenters

Answers

Answer:kk ima do it

Explanation:

Answer:

this and that

Explanation:

this and that

Write an algorithm to get the value of length and breadth of a rectangle from the user and find its area. inn qbasic

Answers

Answer:

IN PYTHON ::

x=int(input('Enter length:'))

y=int(input('Enter width:'))

print('Area of the rectangle is', x*y,'squared units')

I hope it will be useful.

What is the output of the sum of 1001011 and 100011 displayed in hexadecimal?

Answers

Answer:

\(1001011_2\)    \(+\)   \(100011_2\)   \(=\)    \(6E_{hex}\)

Explanation:

Required

\(1001011_2 + 100011_2 = []_{16}\)

First, carry out the addition in binary

\(1001011_2\)    \(+\)   \(100011_2\)   \(=\)    \(1101110_2\)

The step is as follows (start adding from right to left):

\(1 + 1 = 10\) --- Write 0 carry 1

\(1 + 1 + 1(carry) = 11\) ---- Write 1 carry 1

\(0 + 0 + 1(carry) = 1\) ---- Write 1

\(1 + 0 = 1\) --- Write 1

\(0 + 0 = 0\) ---- Write 0

\(0 + 0 = 0\) ---- Write 0

\(1 + 1 = 10\) --- Write 0 carry 1

No other number to add ; So, write 1 (the last carry)

So, we have:

\(1001011_2\)    \(+\)   \(100011_2\)   \(=\)    \(1101110_2\)

Next, convert \(1101110_2\) to base 10 using product rule

\(1101110_2 = 1 * 2^6 +1 * 2^5 + 0 * 2^4 + 1 * 2^3 + 1 * 2^2 + 1 * 2^1 + 0 * 2^0\)

\(1101110_2 = 64 +32 + 0 + 8 + 4 + 2 + 0\)

\(1101110_2 = 110_{10}\)

Lastly, convert \(110_{10}\) to hexadecimal using division and remainder rule

\(110/16 \to 6\ R\ 14\)

\(6/16 \to 0\ R\ 6\)

Write the remainder from bottom to top;

\(110_{10} = 6(14)_{hex}\)

In hexadecimal

\(14 \to E\)

So, we have:

\(110_{10} = 6E_{hex}\)

Hence:

\(1001011_2\)    \(+\)   \(100011_2\)   \(=\)    \(6E_{hex}\)

the practice of transmitting individualized messages using e-mail, mobile devices, and even door-to-door presentations to deliver personalized messages to individuals is known as .

Answers

Direct marketing is a personalized form of advertising that uses various communication channels to deliver tailored messages to individuals.

The practice of transmitting individualized messages using e-mail, mobile devices, and even door-to-door presentations to deliver personalized messages to individuals is generally known as "direct marketing". Direct marketing is a form of advertising that allows businesses to communicate directly with customers through a variety of channels, including email, mobile devices, direct mail, and telemarketing. The goal of direct marketing is to create a personalized experience for each individual customer, which can help increase the effectiveness of the marketing campaign.

Direct marketing is a type of advertising that allows businesses to connect directly with their target audience in a personalized and targeted way. It involves using a range of communication channels, such as email, SMS, social media, direct mail, telemarketing, and even in-person meetings, to deliver a tailored message to each individual.

The main advantage of direct marketing is its ability to target specific audiences with relevant messages, which can increase the effectiveness of the marketing campaign. By segmenting their audience and tailoring their messaging to the specific needs and interests of each group, businesses can increase their chances of capturing their audience's attention and driving conversions.

Direct marketing is commonly used in a variety of industries, including retail, healthcare, financial services, and telecommunications. It can be used to promote products and services, generate leads, increase brand awareness, and build customer loyalty.

Learn more about  Direct marketing here:

https://brainly.com/question/30613605

#SPJ4

write a program in assembly language to add two numbers

Answers

To write a program in assembly language to add two numbers, you need to declare variables to store the numbers and the result, load the numbers into registers, add them using the appropriate instruction, and store the result back into memory. Here is an example program in x86 assembly language:

To write a program in assembly language to add two numbers, you need to follow these steps:

Declare variables to store the two numbers and the result.Load the first number into a register.Load the second number into another register.Add the two numbers using the appropriate assembly language instruction.Store the result back into memory.End the program.

Here is an example program in x86 assembly language:

This program declares three variables: num1, num2, and result. It loads the values of num1 and num2 into registers, adds them using the 'add' instruction, and stores the result back into the result variable. Finally, it ends the program using the 'int 0x80' instruction.

Learn more:

About program here:

https://brainly.com/question/14368396

#SPJ11

Declare variables to hold the numbers and the result, load the numbers into registers, add the numbers using the proper instruction, and then store the result back into memory in order to construct an assembly language programme that adds two numbers. Here is an example x86 assembly language programme:

You must take the following actions in order to create an assembly language programme that adds two numbers:

Create variables to hold the result and the two integers.

Put the initial digit in a register.

Put the next number into a different register.

Use the proper assembly language instructions to add the two numbers.

Retain the outcome in your memory.

Cut the programme off.

Here is an example x86 assembly language programme:

Three variables are declared in this programme: num1, num2, and result. By utilising the 'add' instruction, it loads the values of num1 and num2 into registers, adds them, and then puts the result back in the result variable. The 'int 0x80' instruction is used to end the programme.

Learn more about assembly language here:

https://brainly.com/question/31227537

#SPJ4

You are most likely to take advantage of automation when you

scan groceries at the supermarket

eat home-made bread

go to a hockey game

lock your front door

Answers

Answer:

scan groceries at the supermarket

using an outline, how do you maintain your computer or cellphone​

Answers

Answer:

well first things first be good to your battery. get padded protection of your laptop.disable programs you don't use.

What is one of the fastest ways to search for an items on a specfic web site

Answers

Geogle is the the fastest way

Explanation:

Which test is the best indicator of how well you will do on the ACT

Answers

Answer:

The correct answer to the following question will be "The Aspire test".

Explanation:

Aspire seems to be a highly valued technique or tool that would help parents and teachers take measurements toward another excellent 3rd-10th grade ACT assessment test.

The Aspire test measures academic achievement in five aspects addressed either by ACT quiz such as:

EnglishMathReadingScienceWriting.

So that the above is the right answer.

What prevents a ddr3 dimm from being installed in a ddr2 dimm slot on a motherboard?

Answers

The action that prevents a ddr3 dimm from being installed in a ddr2 dimm slot on a motherboard is The notches on the edge connectors that are found in different locations.

What is a motherboard in a computer?

The motherboard is known to be the framework that acts or functions to ties the computer's part together at one spot and gives room for them to talk to each other.

Note that Without it, none of the other part of the computer, such as the CPU, etc. could interact.

Therefore, The action that prevents a ddr3 dimm from being installed in a ddr2 dimm slot on a motherboard is The notches on the edge connectors that are found in different locations.

Learn more about motherboard  from

https://brainly.com/question/12795887

#SPJ1

Can anyone help with this

Can anyone help with this

Answers

a) Cost: However, HDDs are a lot cheaper. In terms of price for each GB of storage, the SSD is much more costly than the HDD. SSD costs twice as much as HDDs for an identical storage capacity. This means that computers with solid-state drives will be much more expensive than those with traditional hard drives
b) Hard Disk
c) Solid state drives (SSD)
Other Questions
Write the appropriate form of ser. 1. _____ la una.2. _____ las dos. 1) The money used in Egypt is called thePound. The exchange rate is 29 Pounds$5. Find how many dollars you wouldreceive if you exchanged 87 Pounds. How much does a typical water bed weigh? Note that 1 cubic foot of water weighs 64.2 pounds and a typical water bed holds 28 cubic feet of water. A. The volume of the water bed. B. The length of the water bed. C. The height of the water bed. D. The weight of the water bed According to the authors of your textbook, the senate is a __________ body where __________ A student did an investigation to determine the effect the amount of air would have on plant growth. She planted identicalplants in 4 separate closed containers with different volumes of air. She measured the height of the plants after they hadgrown for 3 weeks.What is the dependent (responding) variable in her investigation? A bond pays out a coupon of SEK 8,000 annually and is priced at an annual interest rate of 5.39%. At what price should the bond be traded today if the maturity is infinite? g (x) = x 3 - 3 what is the value of x when g (x) = 24? enter in the box Here are two five-pointed stars. A student said, "Both figures A and B are polygons. They are both composed of line segments and are two-dimensional. Neither has curves." Do you agree with the statement? Explain your reasoning. resting potential is to action potential as _____ is to _____ 1. Ya me romp un hueso al caerme de un rbol, y estuve en casa enferma.2.Estaba caminando por el barrio cuando de repente comenz a llover, me sent mal porque haca fro.3.Voy en bicicleta, y tuve que frenar porque haba un perro en la calle, este perro me mira y corri detrs de m, por suerte iba en bicicleta y logr escapar. Read the excerpt from paragraph 2.(2) My childhood recollections rushed upon me, devoured me. I left the store in a strange, calm frenzy, and going rapidly to the mission house I confronted my Father Paul and demanded to be allowed to go "home," if only for a day.Which phrase has the closest meaning to the phrase "devoured me" as it used in the passage?A. completely consumed herB. left her feeling emptyC. gave her a joyful feelingD. made her feel isolated I NEED HELPanswer only if u know ARABIC PLEASE Planar defects, in particular surfaces and grain boundaries, have increased_____associated with them because all the bonds are not fully satisfied in the atoms at these defects.a. Temperatureb. Vacancy Concentrationc. Energy A young sapling is planted perpendicular to the ground and supportedby 3 cables of equal length, attached to the tree at point D. The wiresare staked to the ground at points X, Y and Z, all at an equal distancefrom the base of the tree, point C.Justify with as much detail as possible how each of the followingpostulates can or cannot be used to prove AXDC 2 AYDC & AZDC:SSSSASASAAASHLAA.O. It wouldn't fit Into Spanish using irregular verbs Edible Health Heather Anderson is a vegetarian who follows a holistic lifestyle. She credits her adoption of a healthy lifestyle with saving her life. Now she wants to share this healthful living with others through her new company called "BC Edible Health". Her firm would initially start with the over 60 wild edible plants found in BC and the Pacific Northwest. These plants form part of the BC 100-mile local diet. Heather would sell these plant (products) to customers. Details - Collect the plants from BC forests, clean them and sell them as-is (live plants), their seeds only or dried format ready to ship anywhere in the world to individual customers, restaurants, grocers, etc. - Grow some of these plants in her own two large greenhouses on her property - Contract greenhouses in BC to grow many of the high-volume selling plants for her - Open a store on Commercial Drive to showcase these plants (do cooking demonstrations) and offer them for sale in any of the above formats - Conform to all BC and Federal Government health regulations - Participate in wellness events, conventions, trade shows As people become increasingly concerned about processed foods Heather sees a real need for her business. Her main motivation is people's health, but she does realize this operation needs to be carefully planned out in order to be at least self-sustaining. While she realizes your consulting Find the value of x. 27 degree angle, 15 and 11 Agree or Disagree and Why: The Scientific Revolution was more important than the Protestant Reformation or the Renaissance With the exception of identical twins, siblings who have the same two biological parents are likely to look similar, but not identical, to each other because they have a similar but not identical combination of genes the phase in the product life cycle when a company is purchasing fixed assets and beginning to produce and sell is the maturity phase introductory phase. decline phase.growth phase.