answersLogoWhite

0

feasibility and outcome

User Avatar

Wiki User

13y ago

Still curious? Ask our experts.

Chat with our AI personalities

RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
JudyJudy
Simplicity is my specialty.
Chat with Judy
JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan

Add your answer:

Earn +20 pts
Q: What factors must you consider when devising a plan?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

How do you plan in the future?

You can only plan IN the present but you can plan FOR the future.


What type of retirement benefit plan is based on a formula that considers your years of service and highest salary?

What type of retirement benefit plan is based on a formula that considers your years of service and highest salary? A. difined contribution plan. B. variable salary plan. C. fixed salary plan. D. defined benefit plan.


Five steps of the logical plan used in solving word problems?

logical plan


What is the proportional plan?

The proportional plan is where electors are awarded to presidential candidates in direct proportion to the # of votes they got.


How do you design an algorithm to find factors of positive integer 12?

Step 1: Consider the problem, and solve it mentally.Step 2: Examine how you solved it, and break that down into steps.Step 3: Write out those steps, and plan code that follows them.Step 4: Write the code.Step 5: Debug the code.If you didn't actually want to know how to design the algorithm, you may want to consider rephrasing your question.For example, an algorithm to find all factors in a number:Step 1: I would solve this by finding the smallest number greater than one that divides into the number in question, noting that number as one of it's factors, factoring that number out of it, and repeating it until the number has no factors other than one and itself.Steps 2&3:Take our given number.Count in a loop from 2 up to the integer value of the number's square root (rounded down). Within that loop, if our number is divisible by our current count, break the loop.If our count is less than or equal to the square root of our number, then: divide our number by the countnote that count as one of the number's factorsgo to step 2, counting up from the number by which we just divided.Step 4 (let's go with PHP):Step 5: I'll leave that to you.Note that there will be more efficient ways of doing that. For example, that loop checks every number less than or equal to the square root of the number in question to see if it's a factor, but you only actually need to check the prime numbers in that range.