Javascript can be executed i believe. but i just googled it,check it for yourself
Answer: IT IS A DARK FEATHERED EDGE AROUND AN IMAGE
Explanation:
Answer:
The solution code is written in Python:
- a = int(input("Input first dish time: "))
- b = int(input("Input extra minutes: "))
- t = int(input("Input time available: "))
-
- dishesCount = 1
- currentTotal = a + b
-
- while(currentTotal <= t):
- dishesCount += 1
- currentTotal += currentTotal + b
-
- print("Number of dishes can be prepared: " + str(dishesCount))
Explanation:
Firstly, prompt user to input the first dish time, extra minutes and time available and assign the values to variable a, b and t, respectively (Line 1-3).
Next, create variable dishesCount to hold the number of dishes can be prepared (Line 5).
Get the current total time by adding a and b and assign it to variable currentTotal (Line 6).
While the currentTotal is less than or equal to t, increment the dishesCount by one and then add the hour of current dish to the currentTotal (Line 9-10).
At last, display the number of dishes that can be prepared in t minutes (Line 12).
The knowledge serves as good foundation for me to understand how technology works behind the scene as well. So I must say a good understanding of computer architecture gives the data scientist the ability to propose feasible solution in capturing and maintaining data, implementing models and algorithms in IT systems.
Answer:
False
Explanation:
The statement being made here is a False statement. An internet layer is not necessarily a quantity of data but instead, it is a group of various different codes, programs, and protocols that allow from the data to travel safely from one endpoint to the other. This is what allows one user from one side of the world to send information to someone else who can receive it from the other side of the world through the internet.