All these answers make me cringe. Unfortunately it is an occupational hazard that your students will have to deal with. When asked algorithmic problems candidates often lock up with fear, their brain shuts down and an otherwise competent person seems unable to answer simple technical questions. I blame this response for candidate failure more so than their inability to solve a problem. I avoid algorithmic problems for these reasons. Besides, a person's ability or inability to answer these types of questions doesn't tell me what I need to know. So your students will have to be aware of more than these gimmicky kind of interviews.
The reality is that simple problems like these don't tell you if the developer is worth anything. A CS grad is more likely to be able to build a string function on the spot than a veteran that has been developing real software projects for a decade. Real world problems aren't as low level as these types of tests. Most real world problems should be solved using libraries where simple string functions have been perfected. If my employees wrote a new low level function every time I needed a web application, everything would take way too long to be practical. The fact is most developers in the real world don't think at this level and aren't burdened with having to know how to do things that others have already solved better. Of course if your job is to make database engines, then sure you need to know it, but it's inconsequential to the average software engineer. The problems being given to candidates should actually match the types of problems you expect them to solve when working for you.
To get an understanding of how candidates think and if they are creative, think about how you would solve one of the high level problems we solve today. Likely you'd create some symbolic representation of the problem in your mind, on the computer, or on a whiteboard. Possibly prototype in pseudo code, use a UML design tool, or put some flow charts on a whiteboard. During interviews I ask high level questions. Can you solve the big problems and think out elegant solutions. If you can do this then you will be able pull out a book and write that string function when you need to.