4 votes
1
What is the complement of a language which is recursively enumerable but not recursive? Is it only non rel or can be both both non rel and recursive?
0 votes
2
What value would the following function return for the input $x=95$?Function fun (x:integer):integer; Begin If x 100 then fun = x – 10 Else fun = fun(fun (x+11)) End;$...