Write a Python program that takes a String as input from the user, removes the characters at even index and prints the resulting String in uppercase without using the built-in function upper().
Write a Python program that takes a string as an input from the user containing all small letters and then prints the next alphabet in sequence for each alphabet in the input.
Hint: You may need to use the functions ord() and chr(). The ASCII value of ‘a’ is 97 and ‘z’ is 122.
Write a function solution that given an integer n and an integer k, returns the maximum possible three-digit value that can be obtained by performing at most K increases by 1 of any digit in N
Write a Python program that will ask the user to input a string (containing exactly one word). Then your program should print subsequent substrings of the given string as shown in the examples below.
=====================================================================
Hints(1): You may use "for loop" for this task.
Hints(2): You may use print() function for printing newlines.
For example:
print(1)
print(2)
Output:
1
2
=====================================================================
We can use print(end = "") to skip printing the additional newline.
For example:
print(1, end ="")
print(2)
Output:(prints the following output right next to the previous one)
12
=====================================================================
Sample Input 1:
BANGLA
Sample Output 1:
B
BA
BAN
BANG
BANGL
BANGLA
.
=====================================================================
Sample Input 2:
DREAM
Sample Output 2:
D
DR
DRE
DREA
DREAM
Discuss the main causes of the financial crisis of 2008? Identify the main risk that contributed to this crisis
an electric fan is rotating at 3.0 rad/s when at time t=0 it begins to constantly accelerate at 2.00 rad/s^2. The initial linear acceleration of the edge of the spinning part of the fan has a magnitude of 1.30 m/s^2. What is the radius of the spinning part of the fan?
write a c program to print the prime numbers in a singly linked list
A heating rated 100W is used to boil off 0.5kg of boiling water. the time to boil the water is ? (specific latent heat of vaporization= 2.30 × 10^6J/kg
Calcium sulfate is known to form hydrates (ionic compounds with water that have well-defined ratios of the ionic formula unit to molecules of water, written CaSO4⋅nH2O). The water content of the hydrate can be determined by gravimetric analysis. How many molecules of water are present for every formula unit of CaSO4 in an unknown calcium sulfate hydrate if a complete drying of a sample to anhydrous caused its mass to decrease from 8.609g to 6.807g?
A lifting machine has velocity ratio of 4 and can lift a load of 100kg when an effort of 327N is applied . If the acceleration due to gravity is 10m/s square Find:
a.)The efficiency of the machine.
b.)The effort required to overcome friction.
c.)Work done against friction when the load is lifted through a distance of 2m.