

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code?title}: " .$shopProduct->getProducer() ." ({$shopProduct->price})n";print $str;}}$product1 = new ShopProduct( "My Antonia", "Willa", "Cather", 5.99 );$writer = new ShopProductWriter();$writer->write( $product1 );?> |
A. | rror |
B. | ather: Willa My Antonia (5.99) |
C. | illa: Cather My Antonia (5.99) |
D. | y Antonia: Willa Cather (5.99) |
Answer» E. | |