Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,208,008 members, 8,001,098 topics. Date: Tuesday, 12 November 2024 at 10:58 PM |
Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (644150 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) ... (121) (122) (123) (124) (125) (126) (127) ... (263) (Reply) (Go Down)
Re: Andela: IT Training And Job by wacomzy: 6:28pm On Nov 03, 2016 |
Hey guys, I'm currently in 300l and would be
going for IT, March 2017 ... I studied physics , I
would really appreciate if I get a
nice place.duration-6 months. |
Re: Andela: IT Training And Job by wacomzy: 6:29pm On Nov 03, 2016 |
Hey guys, I'm currently in 300l and would be
going for IT, March 2017 ... I studied physics , I
would really appreciate if I get a
nice place.duration-6 months. |
Re: Andela: IT Training And Job by tomily(m): 9:38am On Nov 04, 2016 |
Chimexola: Please keep trying, its either server or your network is bad |
Re: Andela: IT Training And Job by Sholy29ice: 10:03pm On Nov 07, 2016 |
. |
Re: Andela: IT Training And Job by whiteangels: 1:43pm On Nov 10, 2016 |
Re: Andela: IT Training And Job by JosephCudjoe(m): 7:58pm On Nov 10, 2016 |
Good evening...pls add me to the group 07060580774 |
Re: Andela: IT Training And Job by Faniyanolamide: 2:00am On Nov 12, 2016 |
Please add me also to the group Olamide: 07039529408 Thank you |
Re: Andela: IT Training And Job by artofalternativ(f): 4:56pm On Nov 12, 2016 |
Please add me to the group PJ: +14138855874 |
Re: Andela: IT Training And Job by malawi101(m): 9:01am On Nov 15, 2016 |
JackOfAllTrades: Plz add me 08038891940 |
Re: Andela: IT Training And Job by artofalternativ(f): 12:25pm On Nov 15, 2016 |
JackOfAllTrades: It says the invite link was revoked |
Re: Andela: IT Training And Job by KELLYNRB: 4:26pm On Nov 15, 2016 |
hi my deadline is today in the next six hours done 69% of the proctor test ....... need help with the labs oop lab : error THERE IS AN ERROR/BUG IN YOUR CODE Results: {"finished": true, "success": [{"fullName": "test_current_account_can_deposit_valid_amounts", "passedSpecNumber": 1}, {"fullName": "test_current_account_can_withdraw_valid_cash_amounts", "passedSpecNumber": 2}, {"fullName": "test_current_account_is_instance_of_bank_account", "passedSpecNumber": 3}, {"fullName": "test_savings_account_can_deposit_valid_amounts", "passedSpecNumber": 4}, {"fullName": "test_savings_account_is_instance_of_bank_account", "passedSpecNumber": 5} ], "passed": false, "started": true, "failures": [ {"failedSpecNumber": 1, "fullName": "test_current_account_cannot_withdraw_more_than_current_balance", "failedExpectations": [{"message": "Failure in line 24, in test_current_account_cannot_withdraw_more_than_current_balance\n self.assertEquals(message, 'Cannot withdraw beyond the current account balance', msg='No overdrafts')\nAssertionError: No overdrafts\n"}] }, {"failedSpecNumber": 2, "fullName": "test_savings_account_can_withdraw_valid_amounts_successfully", "failedExpectations": [{"message": "Failure in line 53, in test_savings_account_can_withdraw_valid_amounts_successfully\n self.assertEquals(2257, self.sa.balance, msg=\"Incorrect balance after withdrawal\"\nAssertionError: Incorrect balance after withdrawal\n"}] }, {"failedSpecNumber": 3, "fullName": "test_savings_account_cannot_withdraw_more_than_current_balance", "failedExpectations": [{"message": "Failure in line 48, in test_savings_account_cannot_withdraw_more_than_current_balance\n self.assertEquals(message, 'Cannot withdraw beyond the current account balance', msg='No overdrafts')\nAssertionError: No overdrafts\n"}]}], "specs": {"count": 8, "pendingCount": 0, "time": "0.000071"} } Invalid Withdraw Amount |
Re: Andela: IT Training And Job by KELLYNRB: 5:29pm On Nov 15, 2016 |
that code saved me khaynoni: |
Re: Andela: IT Training And Job by Thevenine(m): 5:45pm On Nov 15, 2016 |
JackOfAllTrades: Please add me. I have lots of questions Thanks. |
Re: Andela: IT Training And Job by KELLYNRB: 6:42pm On Nov 15, 2016 |
def binary_converter(x): if(x==0): return "000" elif(x<0): return "Invalid input" elif(x>255): return "Invalid input" else: i=1 binaryfinal=0 while(x>0): tempvar=x%2 x=x/2 binaryfinal += (tempvar*i); i *= 10; return binaryfinal help on that if u can |
Re: Andela: IT Training And Job by JackOfAllTrades: 8:23pm On Nov 15, 2016 |
Use this link to add yourselves to the group chat https://chat.whatsapp. com/invite/ESsdHaj7eFH53DVCm2sopd |
Re: Andela: IT Training And Job by LegacyChinedum: 5:06pm On Nov 16, 2016 |
Please add 08151753236 |
Re: Andela: IT Training And Job by LegacyChinedum: 5:07pm On Nov 16, 2016 |
Re: Andela: IT Training And Job by carternkem(m): 10:35pm On Nov 16, 2016 |
Can I please be added to the group, this is my number +233548176199 |
Re: Andela: IT Training And Job by Nobody: 4:49am On Nov 17, 2016 |
Can someone help on this particular lab test please ? I keep getting this error Total Specs: 3 Total Failures: 2 1 . test_it_returns_correct_output_with_positives Failure in line 15, in test_it_returns_correct_output_with_positives self.assertEqual(result, [4, 0], msg='Invalid output') AssertionError: Invalid output 2 . test_returns_correct_ouptut_with_negatives Failure in line 19, in test_returns_correct_ouptut_with_negatives self.assertEqual(result, [4, -14], msg='Invalid output') AssertionError: Invalid output Here is the my code. It works perfectly well on my machine. I don't know why i keep getting error with andela lol. Someone please help review this code: def manipulate_data(list_arg): pos_count = 0 neg_count = 0 positive_integers = 0 negative_integers = 0 list_result = [] if type(list_arg) != list: return "Only lists allowed" else: for list_item in list_arg: if list_item >= 0: positive_integers += list_item pos_count += 1 else: negative_integers += list_item neg_count += 1 if pos_count > 0: list_result.append(positive_integers) if neg_count > 0: list_result.append(negative_integers) return list_result . |
Re: Andela: IT Training And Job by bigtt76(f): 5:40am On Nov 17, 2016 |
Could be the version of Python running on your laptop Noel1: |
Re: Andela: IT Training And Job by Nobody: 8:21am On Nov 17, 2016 |
bigtt76:Thanks. I just reconsidered the question, i feel like its a bit ambiguous since the length of the return list is not specified. They probably expect us to overwrite the input list. I will try this and bring the feedback. Thanks. |
Re: Andela: IT Training And Job by bigtt76(f): 11:22am On Nov 17, 2016 |
Ok great. Noel1: |
Re: Andela: IT Training And Job by Ayets(m): 2:07pm On Nov 17, 2016 |
please add me to andela whatsapp group please 08167137007 |
Re: Andela: IT Training And Job by ifynwabuokei(f): 3:55pm On Nov 17, 2016 |
For those who hv attended the interview. Pls hw was the interview |
Re: Andela: IT Training And Job by Pacesetter4lyf: 4:20pm On Nov 18, 2016 |
08186948231 please add me |
Re: Andela: IT Training And Job by MaZee1: 10:09pm On Nov 18, 2016 |
please add me to your whatapps group 08187246453 |
Re: Andela: IT Training And Job by olatunjiYSO(m): 12:33pm On Nov 19, 2016 |
Please add me up 08034747769 |
Re: Andela: IT Training And Job by olatunjiYSO(m): 12:36pm On Nov 19, 2016 |
Please do I need to be a super programmer before I can be considered to join the andela team? Again, when would the next recruitment be? I am aware a recruitment process is currently on. Please how many times in a year do they recruit at andela? |
Re: Andela: IT Training And Job by Nobody: 1:30am On Nov 20, 2016 |
Hello guys, I completed the application and the plum test. what is next didn't see any more link to the homestudy test. |
Re: Andela: IT Training And Job by Geist(m): 4:06am On Nov 20, 2016 |
MULLAH123:It will be sent within the next few days. Be patient. Meanwhile you should take the opportunity to delve into the home study curriculum as the test will be based on that. 1 Like |
Re: Andela: IT Training And Job by Nobody: 4:09am On Nov 20, 2016 |
Geist:Okay. Thanks brother. |
(1) (2) (3) ... (121) (122) (123) (124) (125) (126) (127) ... (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. 28 |