Given this method comment fill in the blank in the method im
     Given this method comment, fill in the blank in the method implementation./**  Deposits money into the bank account  @param amount the amount to deposit  */Public __ deposit (double amount)  {balance = balance + amount;}  double  void  return  null  Documentation __can be used to describe the classes and public methods of programs.  Components  comments  constants  commands 
  
  Solution
question 9)
function returns nothing so the return type is void
question10)
comments is the right answer,documents comments are the one which incudes in the program to describe the classes and the methods but not in the execution

