Let $G=(V,E)$ be a directed graph with $n(\geq 2)$ vertices, including a special vertex $r$. Each edge $e \in E$ has a strictly positive edge weight $w(e)$. An arborescence in $G$ rooted at $r$ is a subgraph $H$ of $G$ in which every vertex $u \in V \backslash \{r\}$ has a directed path to the special vertex $r$. The weight of an arborescence $H$ is the sum of the weights of the edges in $H$.
Let $H^*$ be a minimum arborescence rooted at $r$, and $w^*$ the weight of $H^*$. Which of the following is $NOT$ always true?
$A)w^* \geq \sum_{u \in V \backslash \{r\}} \min_{(u,v) \in E} w((u,v))$
$B)w^* \geq \sum_{u \in V \backslash \{r\}} \min_{(v,u) \in E} w((v,u))$
$C)H^*$ has exactly $n-1$ edges
$D)H^*$ is acyclic
$E)w^*$ is less than the weight of the minimum weight directed Hamiltonian cycle in $G$, when $G$ has a directed Hamiltonian cycle
I tried like this Here it is saying a graph given G
and it has a special vertex r
Now, H is subgraph of graph G and every vertex of H which has a directed edge to r
Now I thought G is a graph like this
Now as $H$ is any subgraph of $G$, So, A) and B) false , there is always a subgraph which contains minimum weight of the graph
C) false because $H$ may not contain exactly $n-1$ edges.
E) False , because H and G can be both same graph (i.e. improper subgraph)
One case definitely there , where it is false
Now D) H is cyclic or not totally depend on ur designing of graph
So, it is not always true (See in the above diagram, if H=G, then It contains a cycle)

Paulinho is correct that A is true and B is false.
In fact all other options are true (which is good, since it means there is only one correct answer to the question).
First, C is true because in a minimum arborescence every vertex has at most one outgoing edge (and $r$ has none). To see this, suppose $x$ has two outgoing edges in the arborescence, to $y$ and $z$. Since there is a directed path from $y$ to $r$ we can remove the edge $xz$ and every vertex still has a path to $r$, giving an arborescence of smaller weight since $w(xz)>0$. Similarly if $r$ has an outgoing edge we can remove it without breaking any paths to $r$. Since clearly every vertex except $r$ must have at least one outgoing edge, there are exactly $n-1$ edges. It also follows that there are no cycles. Suppose there is a cycle in the arborescence. If it includes $r$, $r$ has an outgoing edge, which we proved couldn't happen. If not, there is some path from a vertex on the cycle to $r$. At the point where this path leaves the cycle, there are two outgoing edges, one along the cycle and one along the path, but again we know this can't happen.
Finally, if there is a Hamilton cycle in the graph, we can take all edges in the cycle except the one leaving $r$. This is an arborescence, and its weight is strictly less than the cycle, since we removed an edge. (This demonstrates why paulinho's counterexample isn't valid - the edge leaving $r$ is superfluous.)