I thought about a simple Task which is to calculate Log2 in an iterative way like:
public static int log2(int x) { int result = 0; while (x > 1) {