1. QUESTION
Please perform the following:
Read 'Newusecase.txt' from desktop
Split each line in such a way that all alphabets should come in first column and numbers in second column. Paste these two columns in an Excel sheet. (To summarise it; from Excel we have to split letters and numbers for eg. ABC123, So when you execute the result has to be segregated as ABC in Excel column A and 123 in column B)
2. QUESTION
IF the current time is 11.46, then 11+46=57 is not a prime number, then the result should be false, of it's a prime number after adding it should show as it's a prime number
3. QUESTION
ENTER email is a valid email or not. Kindly find the criteria below,
#Only one@ should be present
#After the last dot (.), the should be at least three characters
# After @ there should be one dot (.)
#Should not contain blank spaces
For eg. abc@gmail.com then the result should be true. For eg. abc@gmail, then the result should be false ( coz 'com' is missing)