Question 11 MarkComplete the given code for recursive fibonacci series function: Answerreturn(fibo(n-1) + fibo(n-2))View full question & answer→
Question 21 Mark____________ is used to describe the performance or complexity of the code or algorithms.AnswerBig OView full question & answer→
Question 31 Mark_____________ denotes logarithmic time complexity. It represents a code whose execution time will grow logarithmically.AnswerO(log n)View full question & answer→
Question 41 Mark__________________ is a way to enhance code productivity and quality.AnswerCode OptimisationView full question & answer→
Question 51 MarkWrite the statement1 to complete the code. The given code will return the sum of the natural number using recursive function. Answerlist[0] + sum(list[1:])View full question & answer→
Question 61 MarkWhen function call itself is known as ________.AnswerRecursionView full question & answer→
Question 71 MarkAn ________ is a well-defined list of steps written in simple English for solving the particular problem.AnswerAlgorithmView full question & answer→