Develop an algorithm, using either pseudo-code or a flowchart, that:
validAccess to FalsevalidAccess to True if the string contained in the variable tokenID is exactly 3 characters in length, begins with a lowercase 'k', has an uppercase 'A' as its second character, and has a single numeric digit as its third characterExamples:
tokenID is "kA7" or "kA0", then validAccess should be TruetokenID is "KA7", "ka7", "kA77", or "kAB", then validAccess should be FalseYou may wish to use the following in your answer:
isDigit(ch) which returns True if the character ch is a digit (e.g., "0" to "9") and False otherwise.length(string) which returns the number of characters in a string.208 exam-style questions on AQA GCSE Computer Science Representing algorithms. Each one has a worked solution and a mark scheme showing where the marks go.