Downloads? It sounds like that might be the answer. Idk.
Answer:
1
Explanation:
5x4=20 20
------------ = --------
6x4=24 24
1x4=4 4
------------ = ----------
4x6+24 24
4 + 20
--------------- = 24/24 OR 1
24 + 24
Explanation:
These are the advantages of breaking up a single logical message into a number of fixed sized packets.
- When messages are broken into packets it increases the performance and also the reliability of the internet
- if there is an error in a single packet, this error is not going to affect the entire message.
- the efficiency of the communication line in the internet is improved.
- there is a reduction of traffic. Each packet in a single message can be transmitted through different routes.
- It reduces idleness as each packet can send from different program so each program has a service.
Answer:
I introduced my sister to a thrift app called “Jongo”
Explanation:
Describe a time when you influenced someone else’s knowledge around technology, whether it be an app, a new gadget, etc. What did you do? What was the outcome?
While growing up, my sister runs a monthly thrift in our small community, where she collects daily contribution from our neighbors. She does this manually by going around and collecting cash from them. In addition to the risk of cash handling, it was quite stressful and tasking.
Considering all these, I had to introduce her to a mobile app called “Jongo”, it made the job look easy. All my sister had to do was
1. Download the app for herself and the contributors
2. Add them to a group which she created on the app
3. The contributors linked their debit cards to the app and granted access for their account to be debited daily
Due to the cumulative funds, interests was also been accrued daily, hence making it much more easy to do other things in addition to her thrift.
Answer:
The program in Python is as follows:
numbers = [10,20,30,40,50,60,100]
total = 0
for i in range(len(numbers)):
if i != 3:
total+=numbers[i]
print(total)
Explanation:
This initializes the list
numbers = [10,20,30,40,50,60,100]
Set total to 0
total = 0
This iterates through numbers
for i in range(len(numbers)):
This ensures that the index 3, are not added
<em> if i != 3:</em>
<em> total+=numbers[i]</em>
Print the calculated sum
print(total)