So I tried to solve a few logic problems but I'm not sure that I translated these statements correctly...
$B(x)$: $x$ breathes fire,
$D(x)$: $x$ is a dragon,
$F(x)$: $x$ can fly,
$R(x; y)$: $x$ frightens $y$ (or $y$ is frightened by $x$),
$W(x)$: $x$ has wings (or $x$ is winged, etc.).
A. Dragon exists. $= D(x)$
B. All dragons have wings, but some cannot fly. $= \forall x [ D(x) → W(x) ] ∧ \exists x \neg F(x)$
C. Not everything is a dragon. $= \neg\forall x D(x)$
D. There is a dragon frightened by nothing. $= \neg \exists x R(x, y)$
E. For every dragon, there is a dragon that frightens it. $= \forall x [D(x) → \exists x R(x, y)]$
F. Some dragons frighten themselves. $= \exists x [ D(x) ∧ R(x, x) ]$