Odd/Even> string oddEven(int N){ // code here if(N&1) return "odd"; return "even"; //odd numbers rightmost bit always 1 }