1. change your pw every month.
2. dont give out your pw.
I hope this helps and have a wonderful day!!
<3
Answer:
...
Explanation:
The elipses show a pause while showing that the information is relevant
Answer:
A recursive function known as double-digit is a function that accepts as a parameter and returns the integer that is obtained by changing each digit with double digits. For example 425 should be return as 442255.
In the given scenario
the function will be as follow
If
def double_digits:
n < 0:
return -1 * double_digits ( -1 * n )
elif n = 0
return o
else:
result
double_digits ( n // 10 )
return int ( str ( result ) + str ( n % 10 ) + str ( n % 10 )
Test the function as follow
print ( double_digits ( 348 ) )
Result
334488
Test the function as follow
print ( double_digits ( 0 ) )
Result
0
Test the function as follow
print ( double_digits ( -789 ) )
Result
-778899
Answer:FILM INDUSTRY
Explanation:
The film industry is the cinema business under which several different movies are made throughout the year. In India, particularly more than 10 established movie industries work on different regional areas with the Hindi movie industry in Mumbai leading its way to the top.
The movie industry of India is not only the backbone of economy in their regional areas but also provide a lot of revenue to the Country in form f taxes. They are also a good source of employment for a number of individuals.
The wages in the industry are variant based upon the work done withe actors getting the biggest part and the crew workers getting the lowest. The crew members usually get daily wages for their work
Answer:
The pseudocode algorithm is as follows:
- Start
- Input Quantity
- Input Price
- Bill = Quantity * Price
- Discount = 0.10 * Bill
- Display "Before Discount: "+bill
- Display "Discount: "+discount
- Display "After Discount: "+(bill - discount)
- Stop
Explanation:
This begins the algorithm
Start
First, get input for quantity
Input Quantity
Then, get input for price
Input Price
Calculate the total bill (before discount)
Bill = Quantity * Price
Calculate discount
Discount = 0.10 * Bill
Print the total bill (before discount)
Display "Before Discount: "+bill
Print the discounted amount
Display "Discount: "+discount
Print the total bill (after discount)
Display "After Discount: "+(bill - discount)
End of algorithm
Stop