retagged by
824 views
2 votes
2 votes

The keyboard used to transfer control from a function back to the calling function is:

  1. switch
  2. go to
  3. go back
  4. return
retagged by

1 Answer

2 votes
2 votes
Option d.

If the function is any integer type, or float or char. Return is used.

If the function is void type then no need to use any return type keyword.
Answer:

Related questions

2 votes
2 votes
2 answers
1
admin asked Mar 31, 2020
6,344 views
The maximum combined length of the command-line arguments including the spaces between adjacent arguments is:$128$ characters$256$ characters$67$ charactersIt may very fr...
4 votes
4 votes
4 answers
2
admin asked Mar 31, 2020
1,495 views
What is the meaning of following declaration?int(*p[7])();$p$ is pointer to function$p$ is pointer to such function which return type is array$p$ is array of pointer to f...
2 votes
2 votes
4 answers
3
admin asked Mar 31, 2020
1,024 views
How will you free the allocated memory?remove(var-name)free(var-name)delete(var-name)dalloc(var-name)
0 votes
0 votes
1 answer
4
admin asked Mar 31, 2020
6,519 views
Given a class named student, which of the following is a valid constructor declaration for the class?Student student(){}Private final student(){}Student(student s){}Void ...