Multiple choice technology web technology

Top to down approach is a method of ....

  1. not developing a WSDL and then generating a java class

  2. Developing a WSDL and then generating a java class

  3. Writting a java class and then generating a WSDL.

  4. None

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The top-down approach (also called contract-first) starts with designing the WSDL interface contract first, then generates implementation code from it. This ensures better API design and separates interface concerns from implementation. Bottom-up starts with code then generates WSDL.