Answer with Explanation:
"Planning" plays a crucial role before starting any business. If you've decided to start a vegetable farm business, <em>then you better plan ahead</em>.
Vegetables are "perishable," which means<em> it is easy for them to get spoiled</em>. Thus, you have to consider many things such as: <u>what kind of crops to sell, where to sell them, what season you're going to sell them and how much you are going to sell them</u>.
Choosing the kind of crop depends on <em>whether you'll be requiring intensive labor or not.</em> Although the former means more profit, <u>it will require more capital.</u> Knowing your target market is essential. For example, if your target are health-conscious people, then you have to go for organic vegetables. Determining the season to sell the vegetables will allow you to price them accordingly. Lastly, you have to know how much you're going to sell your vegetables<u> in order for you to have an idea of the profit you're going to make.</u> This will also allow you to budget your money.
Answer:
2125 ns.
Explanation:
First of all Execution Time = Number of Instructions * CPI * Clock Cycle
Number of Instructions = 1000
CPI = 0.5
Clock Cycle = 1/clock rate = 1/4GHz = 0.25 * 10-9 s
So Execution Time = 1000 * 0.5 * 0.25 * 10-9
Execution Time = 125 * 10-9 s
Execution Time = 125 ns
Now 20% of the instructions take 10 ns extra time for remote communication.
1 instruction takes 10ns
so 20% of 1000 = 200 instructions will take 200*10 = 2000ns
So Total Execution Time = 125+2000 = 2125 ns.
Answer: Social media nowadays can get us to do things we normally wouldnt do. The internet can tempt you to maybe click an ad that causes viruses or click a picture that looks interesting to you. Or even trolling someone online. All of the examples can affect your digital footprint. Your responsibility in others digital footprint is to warn them to never give anyone you dont know your information. Or to never use websites that look fake or have bad review. Never fall for scams or websites that claim to give you free money or gifts. That way you and your friends have a digital footprint that isnt affected in a bad way.
Answer:
Cheese c =new Velveeta( );
Food f =new Velveeta( );
Food f =new Cheese( );
Explanation:
The super-class is the parent class from which features and attributes are inherited from while the subclass or the child class is the class inheriting from the super or parent class.
In Java, the object instance of a class is created with the syntax;
class_name instance_name = new class_name();
Food is the super or parent class of Cheese (which makes Cheese its subclass) and Cheese is the parent class of Velveeta. The extends keyword is used to denote inheritance.