Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================
Answer: MINIMIZE INPUT
Explanation: AUCTION this is a process of selling a product,an Art work other tradeable assets like stocks, bonds based on the person with the highest BIDDING( Higher amount). In most cases the person buying will try to control his bidding to the MINIMUM AMOUNT in order for him to avoid spending higher than expected. Auction sale is sometimes used when trying to sell off old products which has been held for a long time, sometimes Auctions are used to raise funds for a particular Reason like the sale of ARTIFACTS.
Answer:
Free convection:
When heat transfer occurs due to density difference between fluid then this type of heat transfer is know as free convection.The velocity of fluid is zero or we can say that fluid is not moving.
Force convection:
When heat transfer occurs due to some external force then this type of heat transfer is know as force convection.The velocity of fluid is not zero or we can say that fluid is moving in force convection.
Heat transfer coefficient of force convection is high as compare to the natural convection.That is why heat force convection reach a steady-state faster than an object subjected to free-convection.
We know that convective heat transfer given as
q = h A ΔT
h=Heat transfer coefficient
A= Surface area
ΔT = Temperature difference
A persuasive speech is structured like an informative speech. It has an introduction with an attention-getter and a clear thesis statement. It also has a body where the speaker presents their main points and it ends with a conclusion that sums up the main point of the speech.
Answer:
1. They needed to develop multiple components in software programs.
2. The ability to overlap the development to be more evolutionary in nature.
3. The need to be more risk-averse or the unwillingness to take risks led to the use of a spiral model.
Explanation:
Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.
In SDLC, a waterfall model can be defined as a process which involves sequentially breaking the software development into linear phases. Thus, the development phase takes a downward flow like a waterfall and as such each phase must be completed before starting another without any overlap in the process.
An incremental model refers to the process in which the requirements or criteria of the software development is divided into many standalone modules until the program is completed.
Also, a spiral model can be defined as an evolutionary SDLC that is risk-driven in nature and typically comprises of both an iterative and a waterfall model. Spiral model of SDLC consist of these phases; planning, risk analysis, engineering and evaluation.
<em>What motivated software engineers to move from the waterfall model to the incremental or spiral model is actually due to the following fact;</em>
- They needed to develop multiple components in software programs.
- The ability to overlap the development to be more evolutionary in nature.
- The need to be more risk-averse or the unwillingness to take risks led to the use of a spiral model.