1. What is the return-type of the function sqrt() a) int b) float c) double d) depends on the data type of the parameter AnswerAnswer: c [Reason:] None. 2. Which of the following function declaration is illegal? a) double func(); int main(){} double func(){} b) double func(){}; int main(){} c) int main() { double func();…