Answer:
Digital transformation is the fundamental application of digital technology in all areas. This technology changes the various types of business into modern way and enhance the unique ideas to increase the digital production environment.
The opportunities and challenges forged by digital transformation are as follow:
- Without proper knowledge, it is impossible to enhance the market of digitization. Hence, it is mandatory to keep good knowledge of current digital trend.
- Digital transformation growth only maintain by the customer satisfaction. So, always make product according to the requirements of the product and gain successful approval from the customers.
- The main challenge face in the digital transformation is to make an good and effective product with limited budget.
The wired or wireless that means of connecting a computer to the internet is called : B. physical connection
In computers, physical connection does not necessarily physical. It is the medium that do the direct connect to the internet
hope this helps
Rows? Well in database every time you add data a new row is created automatically or (rarely) manually. They are added throughout functions like <em>addRow()</em> depending on programming language programmatically. The functionality to add db rows is enabled by drivers which are often present in the framework by default.
n = int(input("How many numbers do you need to check? "))
odd = 0
even = 0
i = 0
while i < n:
num = int(input("Enter number: "))
if num % 2 == 0:
even += 1
print(str(num)+" is an even number")
else:
odd += 1
print(str(num)+" is an odd number")
i += 1
print("You entered "+str(even)+" even number(s).")
print("You entered "+str(odd)+" odd number(s).")
I hope this helps!