Answer:Options
a) type function(arg-list) throw(type-list)
{
........
........ Function body
........
}
b) type function(arg-list) throw(arg-list)
{
........
........ Function body
........
}
c) type function(type-list) throw(type-list)
{
........
........ Function body
........
}
d) None of the above
Answer :
a) type function(arg-list) throw(type-list)
{
........
........ Function body
........
}