Top answers


How do you write code to implement a recursive fibonacci algorithm?

def recursiveFib(x): x = int(x) if x == 0: return (0) elif x == 1 or x == 2: return (1) elif x > 2: return (recursiveFib(x-2)+recursiveFib(x-1)) print ("Please enter a number of fibonacci numbers req...
JL
Answered by Jazir L. Python tutor
1879 Views

How do I show passion for the subject(s) that I am applying for without using the word ‘passion’?

You show how much you love the subject through the way that you talk about it and the actions you have taken to further your knowledge of the degree that you will be studying. You explain why you like the su...
JB
10373 Views

How do I ensure I meet the marking criteria for the process of my project

Keep a written track of all your work so far in a diary style log, you will receive credit for this.

Which of Mary Ainsworths attachment type is most commonly associated with positive later life social development?

Secure
MM
2060 Views

Find the stationary points on y = x^3 + 3x^2 + 4 and identify whether these are maximum or minimum points.

Differentiate wrt x. This leaves dy/dx = 3x^2 + 6x and equate this to 0 as we are looking for stationary points.So, 3x^2 + 6x = 0. Factorise to get x(3x +6) = 0. So x = 0 and x = -2 are the two solutions.Now...
TD
Answered by Tutor169411 D. Maths tutor
3486 Views