After reading this previous question Difference between NFA and DFA, it's clearer to me their relationship/differences.
Can one say that a DFA is a subset of a NFA where both recognize a/the same regular language? If so, how can I back my assumption ?
Yes every NFA has a corresponding DFA, the process of constructing the DFA from the NFA is called subset construction. In essence each state of the DFA is a set of states of the NFA. The constructed DFA recognizes the same formal languange as the starting NFA.