Top answers

All subjects
All levels

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 f...

JL
Answered by Jazir L. Python tutor
1326 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...

JB
8634 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
1524 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....

TD
Answered by Tutor169411 D. Maths tutor
2803 Views

We're here to help

contact us iconContact ustelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2025

Terms & Conditions|Privacy Policy
Cookie Preferences