Question: How many modules are part of the cyclic dependency? A. 0 B. 1 C. 2 D. 3 E. 4 module.com.light { exports com.light; } module
How many modules are part of the cyclic dependency?

A. 0
B. 1
C. 2
D. 3
E. 4
module.com.light { exports com.light; } module com.plant { exports com.plant; requires com.light; requires com.animal; } module com.animal { exports com.animal; requires com.light; } module com.worm { } exports com.worm; requires com.light; requires com.animal; requires com.plant;
Step by Step Solution
3.56 Rating (160 Votes )
There are 3 Steps involved in it
In the provided image there are four modules comlight complant comanimal and comworm To fin... View full answer
Get step-by-step solutions from verified subject matter experts
