Answer:
NO .THATS NOT A GOOD QUESTIONS.
Explanation:THOSE R PERSONAL
Answer:
It already looks right so I don't know why it's not working but try it this way?
Explanation:
def ilovepython():
for i in range(1, 4):
print("I love Python")
ilovepython()
Answer:b) Master reference file(MRF)
Explanation: Master reference file is the collection of data that persist the schedules records for the maintenance and administration. It is the UDC version tool .
It helps in the managing the data content present in the database, archiving and tracing any changes on the database over certain time.Master data management is the managing of data's integrity .It send the collected critical data to the master reference files.
Other given options are incorrect because backup file is for creating data backup, central directory is record of the data of users and other information and data silo is kind of fixed data having the governance of any organization.Thus, these factors don't help in the critical information management.Thus, the correct option is option(b).
Answer:
Click on the Project Tab then the Change Working Time Tab
Explanation:
The software here is believed to a MICROSOFT PROJECT. This is used often by project managers to manage projects particularly in terms of project duration, methods of the undertaking, resource management, reports, etc.
Hence, to adapt the software to this new schedule to a 7-day work week from the traditional 5-day, one should "Click on the Project Tab then the Change Working Time Tab."
This can be done by
1. Click on the Project tab, then click on Properties group
2. Click on Change working time
2. From the Change Working Time window click on "Create new calendar"
3. Name your calendar a name, in this case, "7 day week, " from there on keep following the prompt questions to finish the settings.
4. After the working times are set, click Ok.
Answer:
Code:-
# function to print the pattern
def draw_triangle(n, num):
# base case
if (n == 0):
return;
print_space(n - 1);
print_asterisk(num - n + 1);
print("");
# recursively calling pattern()
pattern(n - 1, num);
# function to print spaces
def print_space(space):
# base case
if (space == 0):
return;
print(" ", end = "");
# recursively calling print_space()
print_space(space - 1);
# function to print asterisks
def print_asterisk(asterisk):
# base case
if(asterisk == 0):
return;
print("* ", end = "");
# recursively calling asterisk()
print_asterisk(asterisk - 1);
# Driver Code
n = 19;
draw_triangle(n, n);
Output:-
# Driver Code n = 19;| draw_triangle(n, n);