Answer:
Adobe Indesign.
Explanation:
Adobe indesign is a typesetting and desktop publishing application used to create posters, newspapers, flyers, brochures, magazines, presentations, book and ebook etc.
It is a package from the Creative cloud adobe system packages. It has predetermined templates for newspaper pages (if newpaper is to published), and plug-ins to further customize the the layout of the newspaper to be created or published.
Answer:
Following are the program to this question:
#include <iostream>//defining header file
using namespace std;
int recurs(int x, int n)//defining a method recurs that accepts two parameter
{
if(n==0)//defining if block that checks n value
{
return 1;//return value 1
}
else//defining else block
{
return x*recurs(x,n-1);//use return keyword that retun value
}
}
int main()//defining main method
{
cout<<recurs(5,3); //use print method to call recurs method
return 0;
}
Output:
125
Explanation:
In the above-given program, the integer method "recurs" is declared which accepts, two integer variables, which are "x, n", inside the method the if conditional statement is used.
- In the if block, it checks the value of n is equal to "0" if this condition is true, it will return a value, that is 1.
- Otherwise, it will go to the else block, in this block, it will use the recursive method to print its value.
Answer:
A
Explanation:
After you make a big goal you must make many small goals to reach it
Answer:
def isdivisible():
maxint=input("Enter the Max Int")
int1=0
int2=0
int1=input("Enter the first Integer")
int2=input("Enter the second Integer")
tup1=(int1, int2)
print(tup1)
i = 1
for i in range(1, int(maxint)-1):
if int(tup1[0])%i==0 & int(tup1[1])%i==0:
print(i)
else:
continue
isdivisible()
1.2 Outputs
First test case:
Enter the Max Int6
Enter the first Integer2
Enter the second Integer8
('2', '8')
1
2
Second test case: returning empty list
Enter the Max Int2
Enter the first Integer13
Enter the second Integer27
('13', '27')
Test case 3:
Enter the Max Int4
Enter the first Integer8
Enter the second Integer10
('8', '10')
1
2
Explanation:
The program is as above, and the three test cases are also mentioned. We have created a tuple out of two input integer, and performed the output as required.