Which of the following applications are more sensitive to delay,
bandwidth and both, and WHY? i. Watching video on YouTube ii. Video call with your friend on Skype iii. Web suffering iv. Sending e-mail v. Sending audio message through WhatsApp
Elle Joy Vasquez 2
Create a Python script that will display the next 5 numbers in the sequence where each number is the sum of the previous two.
TEXT FILE
8 3
4 5
6 2
Output
8 3 11 14 25 39 64
4 5 9 14 23 37 50
6 2 8 10 18 28 46
Elle Joy Vasquez 1
Create a Python script that will display the SUM of all even and the SUM of all odd numbers in a text file.
TEXT FILE
20
4
15
30
5
OUTPUT
SUM OF EVEN: 54
SUM ODD: 20
(1) Write a program that will ask for a price.
(2) If the price is greater than 1000, compute a 10% discount from the original price. Display the computed discount.
(3) If not, just display the original price.
Write a python program for check the given digit is repeated how many times in the given number
a) Write a C program that reads marks of 10 students in to a single subscripted array. b) Above marks should be between 0 to 20. Modify the above program to add marks to the array only if the input mark is between the given range. c) Display the values stored in the array
Class Counter
-define the data members as per the given specifications.
-define the constructor with public visibility.
-the array data will contain 0 or 1 always.
-Implement the below methods for this class:
-String getCount():
ยท Write a code that gives the output on the below conditions -
1. If the count of zeros is even and the count of one is also even then return "Great".
2. If the count of zeros is odd and the count of one is also odd then return "Great".
3. If the count of zeros is even and the count of odd then throw ExceptionOne with a message "One comes odd times".
make a c++ program that will calculate body mass index using if-else condition.
Using class name studgrade with public data members and functions, create a program that will allow user to enter students A's grades in her five(5) major subjects, compute and display for the average grade of the student.
Create a program that will accept two numbers and print the product, quotient, sum, difference, remainder, exponent and floor division. First number will be the left operand for quotient, difference, remainder, exponent, and floor division. Also, it prints "True" if it satisfies the condition and "False" otherwise: First number is within 10 and 20
Second number is within 10 and 20