What would be in out.txt?
cat < in.txt > out.txt
the output from the command line.
Nothing, The redirect will create a new empty file, but there will not be any output from the cat command to redirect.
the content of in.txt.
Nothing, because you cannot redirect from a file (in.txt) to another file (out.txt). You can redirect only from a command to a file.