0 answers
1
ER- no of tables?
1 answer
4
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?
6 answers
7
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;$...