y= (1, 4) times x + (15, 4)
Answer:
Firstly need to understand the questions.
If 15 men working 10 days, They earn 500.
If 12 men working 14 days, how much they will earn?
Step-by-step explanation:
560
Solution:
15 men working for 10 days =500
1 man working for 1 day = 500/(10*15) =10/3
Now 12 men working for 14 days = 12*14*10/3 =560.
I am pretty sure that answer is right.
Thank you :)
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
Answer:
Below in bold.
Step-by-step explanation:
A.This is the number of combinations of 6 from 15
= 15C6
= 15! / (15-6)! 6!
= 5,005 ways.
B. This is the number of permutaions of 6 from 15:
= 15! / (15-6)!
= 3,603,600 ways.
3000x + 1000y < 30000
2000x + 6000y < 30000
x = 7.5
y = 7.5