If a language L is generated by a regular expression, then L is recognized by a DFA.
I think this is true, because regular expressions describe regular languages, those of which are exactly accepted by DFAs.
If a language L is recognized by an NFA, then L is generated by a regular expression.
I think this is true as well, because all NFAs are DFAs, and the class of languages accepted by DFAs are regular languages which can be expressed as regular expressions.
Am I confusing any topics here? I'd appreciate any clarifications or intuitive explanations if my understanding seems wrong.
No, you're right. The following conditions on a language $L$ are equivalent:
-- that is, a language that satisfies any one of these conditions will also satisfy the others. In other words, each of these conditions describe the same class of languages, which is known as the "regular languages".
If the question is homework, it may be that you're asked to prove one of these equivalences, not just state that you know it's the case. How you would go about proving it depends on what you already have proof of, but typically you would describe a concrete algorithm that takes a regular expression (or a NFA) as input and produces a DFA (or a regular expression) for the same language as output, together with an argument that the output does indeed describe the same language as the input.