Assume a text file “Test.txt” is already created. Using this file, write a function to create three
files “LOWER.TXT” which contains all the lowercase vowels and “UPPER.TXT” which contains all
the uppercase vowels and “DIGIT.TXT” which contains all digits
Write a program in Python allowing to delete multiple spaces in a text file
named myfile.txt which contains a text: T =
'Python is programming language'
# Function: Display the Bitcoin price in the menu item – to assist the user when setting price levels
def updateMenuPrice(self):
# Get the latest Bitcoin info (as a Tick object) from getBitMexPrice(). Name it tickObj.
tickObj = self.getBitMexPrice()
# Update the currentPrice property with the Bitcoin price in tickObj.
Write a Java program that gets strings containing a person’s first name and last name as separate values, and then displays their “initials”, “name in address book”, and “username”. For example, if the user enters a first name of “John” and a last name “Smith”, the program should display “J.S.”, “John SMITH”, and “jsmith”.
A financial organization needs to design a secured authentication system.
· The system should accept the user’s credentials and check if the user is legitimate.
· In case the user is legitimate it should ask the user whether he wants to know the account balance, make fund transfer and update balance.
· In case user is not legitimate inform the admin about unauthorized access
· If more than 3 wrong login attempts are made for the user then lock the account and do not allow access for that account
· Secured password based account unlock by legitimate user
· Get monthly reports of unauthorized access
Design an algorithm to accomplish this and implement the same using C.
Input
The integer I gave
Description
N/A
Constraints
N/A
Sample
N/A
Output
The first line will contain a message prompt to input the integer.
The second line contains the word "yes" or "no".
Enter·the·integer:·76
no
Input
The letter to be checked
Description
N/A
Constraints
N/A
Sample
N/A
Output
The first line will contain a message prompt to input the letter to be checked.
The second line verifies whether the letter is a vowel or not.
Enter·the·letter:·a
Vowel
Input
Programmer's age
Description
N/A
Constraints
N/A
Sample
N/A
Output
The first line will contain a message prompt to input the Programmer's age.
The second line will contain either "Adult" or "Minor".
Enter·the·Programmer's·age:·19
Adult
Input
The Programmer's dad's age
Description
N/A
Constraints
N/A
Sample
N/A
Output
The first line will contain a message prompt to input The Programmer's dad's age.
The second line contains that inputted age.
The third line contains a string if his dad is a senior citizen.
Enter·The·Programmer's·dad's·age:·62
His·age·is·62
Senior·Citizen