Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,153,199 members, 7,818,664 topics. Date: Sunday, 05 May 2024 at 09:12 PM

Andela: IT Training And Job - Jobs/Vacancies (87) - Nairaland

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (622003 Views)

Letter To All Fresh Graduates and Job seekers / Andela: IT Training And Job - Jobs/vacancies / Similarities Between Football And Job (2) (3) (4)

(1) (2) (3) ... (84) (85) (86) (87) (88) (89) (90) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by faith2ogesco(m): 5:43pm On Jan 14, 2016
ifynwabuokei:




Pls can I get a screen shot from u?
am done so i can't take screenshots anymore.

after defining.
if n == 1:
return true
if n%2 == 0 and n>2:
return False
"The above is for numbers greater than 2 and divisible by 2 with no remainder(even numbers))"

for i in range(3, int(n**0.5)+1,2):
if n%i ==0:
return False
else: "you can remove this else, like I did. It will still work".
all the notes i put in quotes are jux for explaining

return True

notes: I used n instead of int cos int is kinda like an inbuilt function in python(I have forgotten the right term o) and I used it later.

"The int(n**0.5)+1 simply means taking a number,finding its square root and adding 1 to give a single integer.
Note: words in quotes are for explanation
Re: Andela: IT Training And Job by olaymuchak(m): 6:38pm On Jan 14, 2016
Sheyhunn:
Can someone pls help of with the algo lab screenshot. I've went through the previous replies here and I can't find it. I've been stuck here for couple of days now...
Time is not on my side...


Dat is a shot of mine that worked

Re: Andela: IT Training And Job by ifynwabuokei(f): 6:42pm On Jan 14, 2016
olaymuchak:


Dat is a shot of mine that worked
Pls help me out wit screenshot for data structure lab
Re: Andela: IT Training And Job by TDyke: 7:23pm On Jan 14, 2016
Dear house after my test I didn't see the "submit" button anywhere on my page o. Hmmm let it nor gaan be that you finish exam you no submit grin. Thank you
Re: Andela: IT Training And Job by olaymuchak(m): 7:30pm On Jan 14, 2016
ifynwabuokei:

Pls help me out wit screenshot for data structure lab

Re: Andela: IT Training And Job by tinkernut: 7:47pm On Jan 14, 2016
.
Re: Andela: IT Training And Job by tinkernut: 7:49pm On Jan 14, 2016
[quote author=olaymuchak post=41977499][/quote]

pls can you help with screenshot of OOP LAB, RECURSIVE LAB, AND FIZZ BUZZ LAB
thanks
Re: Andela: IT Training And Job by faith2ogesco(m): 7:54pm On Jan 14, 2016
[quote author=olaymuchak post=41977499][/quote]I like ur code for d set program. u have a typo error in the reverse list line. as for your prime number code, still trying to figure it out. very confusing
Re: Andela: IT Training And Job by ifynwabuokei(f): 9:00pm On Jan 14, 2016
[quote author=olaymuchak post=41977499][/quote]

Tanxs so much I am grateful
Re: Andela: IT Training And Job by Dsense(m): 10:43pm On Jan 14, 2016
miketayo:


congrats, wat happens after u complete it?


Well, i'm just anticipating the call for an interview.........
Re: Andela: IT Training And Job by Dsense(m): 10:48pm On Jan 14, 2016
telldaddy:
Dsense, I was done since 3rd. didn't come into this forum while I wrote. didn't even remember the forum. [size=8pt][/size]

Apparently, lot of people started earlier than i did. I heard of that program very late. It took me 4 consecutive days to go through the materials (though being a Computer Science undergraduate did help a lot). So, i only spent 3 days writing the test. I'm sure that's what made it a little bit tough.

2 Likes

Re: Andela: IT Training And Job by tonymorris: 11:39pm On Jan 14, 2016
pls a dear friend should help me with the fizzbuzz program please
Re: Andela: IT Training And Job by cheks100: 11:45pm On Jan 14, 2016
TDyke:
Dear house after my test I didn't see the "submit" button anywhere on my page o. Hmmm let it nor gaan be that you finish exam you no submit grin. Thank you

It could be that you have already submitted that part.
Re: Andela: IT Training And Job by tonymorris: 11:47pm On Jan 14, 2016
ok got it answer for fizzbuzz

function fizzBuzz(number){
return number % 15 === 0 ? "FizzBuzz" : number % 5 === 0 ? "Buzz" :
number % 3 === 0 ? "Fizz" : number;
}

1 Like

Re: Andela: IT Training And Job by TDyke: 6:14am On Jan 15, 2016
cheks100:


It could be that you have already submitted that part.

Truthfully, I don't understand your statement. I'm asking if there's a submit button after 100% completion of the test or not
Re: Andela: IT Training And Job by faith2ogesco(m): 7:28am On Jan 15, 2016
TDyke:


Truthfully, I don't understand your statement. I'm asking if there's a submit button after 100% completion of the test or not
u get a msg on the site that your curriculum is complete with a trophy grin
TDyke:


Truthfully, I don't understand your statement. I'm asking if there's a submit button after 100% completion of the test or not
u get a msg on the site that your curriculum is complete with a trophy
Re: Andela: IT Training And Job by enigmatique(m): 8:10am On Jan 15, 2016
WafiJoe:


The Whatsapp group is still much alive and it is serving its purpose. Your fears was unneccessary. smiley
I wasn't afraid of anything. I was just stating what has been observed to usually happen with WhatsApp groups born of NL. If you still doubt me, ask those threads about phones.

Even sef, our ancient fathers knew this and said "Odò tó bá gbàgbe orísun rè á gbe" which means "Any river that forgets it source will surely dry up".

#JustSaying.
#NothingPersonalBiko
Re: Andela: IT Training And Job by olaymuchak(m): 9:03am On Jan 15, 2016
faith2ogesco:
I like ur code for d set program. u have a typo error in the reverse list line. as for your prime number code, still trying to figure it out. very confusing

I was in a haste sorry for pasting d wrong code, in d prime function it shd be if(n%m==0): and not if (n%m != 0):

D reverse is ok "return data[::-1]"
Re: Andela: IT Training And Job by faith2ogesco(m): 9:44am On Jan 15, 2016
olaymuchak:


I was in a haste sorry for pasting d wrong code, in d prime function it shd be if(n%m==0): and not if (n%m != 0):

D reverse is ok "return data[::-1]"
ehen. I for talk?
Re: Andela: IT Training And Job by Sheyhunn(m): 10:04am On Jan 15, 2016
olaymuchak:


Dat is a shot of mine that worked
I've tried your code. The solution is ok with no failure but it still replied with 'Your solution failed to pass all the test'
Re: Andela: IT Training And Job by ifynwabuokei(f): 10:29am On Jan 15, 2016
[quote author=olaymuchak post=41977499][/quote]

Pls am still having error with the code. cry crypls assist with the data structure code
Re: Andela: IT Training And Job by TDyke: 11:18am On Jan 15, 2016
olaymuchak:


Dat is a shot of mine that worked

Oga drop iterative factorial code na. Best coder my friend is in need cool
Re: Andela: IT Training And Job by TDyke: 11:19am On Jan 15, 2016
faith2ogesco:
u get a msg on the site that your curriculum is complete with a trophy ;Du get a msg on the site that your curriculum is complete with a trophy

What if I decide to start another curriculum? grin cos I can see 7 grin
Re: Andela: IT Training And Job by choiceboy99: 11:35am On Jan 15, 2016
sorry I am stuck on the recursive test(60%). Any help for a brother
Re: Andela: IT Training And Job by Sheyhunn(m): 11:44am On Jan 15, 2016
My code is right but still don't pass all the test.
Can someone help me out with this ALGO LAB...
I've gat no time pleaseee.....

Re: Andela: IT Training And Job by Sheyhunn(m): 11:50am On Jan 15, 2016
choiceboy99:
sorry I am stuck on the recursive test(60%). Any help for a brother
Can you please help me with your ALGO LAB...
No time on my side please....
Re: Andela: IT Training And Job by faith2ogesco(m): 12:14pm On Jan 15, 2016
Sheyhunn:
My code is right but still don't pass all the test.
Can someone help me out with this ALGO LAB...
I've gat no time pleaseee.....
had that same issue. my code is above.
Re: Andela: IT Training And Job by faith2ogesco(m): 12:33pm On Jan 15, 2016
faith2ogesco:
had that same issue. my code is above.
check the unit test if the put 1 as a prime number. if they did then u HV to write a code for it. but I think the main problem is in your range. if u are checking whether a large number is a prime number, you ll probably run outta memory.eg if ur asked to find the prime number of 9653578743678644676474677. d system ll crash
Re: Andela: IT Training And Job by tinkernut: 2:00pm On Jan 15, 2016
turnnel:


In the base case, if the number is less than two return 1

If it the number is 2 or greater, use recursive call to return the factorial
e.g. factorial(0) = 1
factorial(1) = 1
factorial(2) = 2 * 1 = 2
factorial(5) = 5 * 4 * 3 * 2 * 1 * 0 same as 5 * (5-1) * (5-2) * (5-3) * (5-4) * (5-5)
using recursive call ==> factorial(n) = n * factorial(n -1)

pls i'm having problems with anglo lab its not submitting but it passed tests. can you find whats wrong?

just sent you a mail

Re: Andela: IT Training And Job by choiceboy99: 2:04pm On Jan 15, 2016
please ooo group help your guys with solution...
Re: Andela: IT Training And Job by choiceboy99: 3:04pm On Jan 15, 2016
tonymorris:
pls a dear friend should help me with the fizzbuzz program please

please share your recursive program sir
Re: Andela: IT Training And Job by tinkernut: 3:13pm On Jan 15, 2016
choiceboy99:

please share your recursive program sir
can u pls share your anglo

(1) (2) (3) ... (84) (85) (86) (87) (88) (89) (90) ... (263) (Reply)

How To Apply For Nigeria Immigration Service (NIS) Recruitment 2017 / Federal Road Safety Commission 2018 Recruitment: How To Apply / FIRS To Recruit 1,250 New Staff

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 34
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.