NewStats: 3,262,623 , 8,177,714 topics. Date: Tuesday, 03 June 2025 at 05:28 AM 6z1b6h

6z3e3g

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

Andela: IT Training And Job (667582 Views)

(4)

Go Down)

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.
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.
tomily(m): 9:38am On Nov 04, 2016
Chimexola:
Hi guys what should I do?
It seems my has been compromised. grin
I can't to my home study quiz.

Last night it showed someone else's name as the name.
The same this morning so I clicked then and up till now I couldn't again.

Deadline is tomorrow. grin grin grin

I am using Google Chrome.
I have clicked on forgotten to Reset.
yet I have not received any mail to proceed as supposed.
I have checked my inbox, spam mail, nothing yet.
Since 2:45am this morning up till now grin shocked

Please keep trying, its either server or your network is bad
Sholy29ice: 10:03pm On Nov 07, 2016
.
whiteangels: 1:43pm On Nov 10, 2016
cry
JosephCudjoe(m): 7:58pm On Nov 10, 2016
Good evening...pls add me to the group 07060580774
Faniyanolamide: 2:00am On Nov 12, 2016
Please add me also to the group
Olamide: 07039529408
Thank you smiley
artofalternativ(f): 4:56pm On Nov 12, 2016
Please add me to the group
PJ: +14138855874
malawi101(m): 9:01am On Nov 15, 2016
JackOfAllTrades:
Hey guys, I'm creating a WhatsApp group so you can #AskAFellow everything related to Andela.

We will try to answer all your questions.
Thanks.

Plz add me 08038891940
artofalternativ(f): 12:25pm On Nov 15, 2016
JackOfAllTrades:
click on this link to the WhatsApp group
https:///ESsdHaj7eFH53DVCm2sopd

It says the invite link was revoked
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__can_deposit_valid_amounts", "edSpecNumber": 1},
{"fullName": "test_current__can_withdraw_valid_cash_amounts", "edSpecNumber": 2},
{"fullName": "test_current__is_instance_of_bank_", "edSpecNumber": 3},
{"fullName": "test_savings__can_deposit_valid_amounts", "edSpecNumber": 4},
{"fullName": "test_savings__is_instance_of_bank_", "edSpecNumber": 5}
], "ed": false, "started": true,


"failures": [

{"failedSpecNumber": 1, "fullName": "test_current__cannot_withdraw_more_than_current_balance", "failedExpectations": [{"message": "Failure in line 24, in test_current__cannot_withdraw_more_than_current_balance\n self.assertEquals(message, 'Cannot withdraw beyond the current balance', msg='No overdrafts')\nAssertionError: No overdrafts\n"}]
},

{"failedSpecNumber": 2, "fullName": "test_savings__can_withdraw_valid_amounts_successfully", "failedExpectations": [{"message": "Failure in line 53, in test_savings__can_withdraw_valid_amounts_successfully\n self.assertEquals(2257, self.sa.balance, msg=\"Incorrect balance after withdrawal\"wink\nAssertionError: Incorrect balance after withdrawal\n"}]

},

{"failedSpecNumber": 3, "fullName": "test_savings__cannot_withdraw_more_than_current_balance", "failedExpectations": [{"message": "Failure in line 48, in test_savings__cannot_withdraw_more_than_current_balance\n self.assertEquals(message, 'Cannot withdraw beyond the current balance', msg='No overdrafts')\nAssertionError: No overdrafts\n"}]}], "specs": {"count": 8, "pendingCount": 0, "time": "0.000071"}

}
Invalid Withdraw Amount
KELLYNRB: 5:29pm On Nov 15, 2016
that code saved me

smiley
khaynoni:



I responded to the bolded words below




What I'm saying in essence is that the reason why it's giving that error might be because the numbers were not enclosed as a list.
Thevenine(m): 5:45pm On Nov 15, 2016
JackOfAllTrades:
Hey guys, I'm creating a WhatsApp group so you can #AskAFellow everything related to Andela.

We will try to answer all your questions.
Thanks.

Please add me. I have lots of questions

Thanks.
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
JackOfAllTrades: 8:23pm On Nov 15, 2016
Use this link to add yourselves to the group chat

https://chat.whatsapp. com/invite/ESsdHaj7eFH53DVCm2sopd
LegacyChinedum: 5:06pm On Nov 16, 2016
Please add 08151753236
LegacyChinedum: 5:07pm On Nov 16, 2016
https:///invite/ESsdHaj7eFH53DVCm2sopd isn't working

Please add 08151753236
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



.
bigtt76(f): 5:40am On Nov 17, 2016
Could be the version of Python running on your laptop undecided

Noel1:
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 Nobody: 8:21am On Nov 17, 2016
bigtt76:
Could be the version of Python running on your laptop undecided

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 . Thanks.
bigtt76(f): 11:22am On Nov 17, 2016
Ok great.

Noel1:
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 . Thanks.
Ayets(m): 2:07pm On Nov 17, 2016
please add me to andela whatsapp group please 08167137007
ifynwabuokei(f): 3:55pm On Nov 17, 2016
For those who hv attended the interview. Pls hw was the interview
Pacesetter4lyf: 4:20pm On Nov 18, 2016
08186948231 please add me
MaZee1: 10:09pm On Nov 18, 2016
please add me to your whatapps group 08187246453
olatunjiYSO(m): 12:33pm On Nov 19, 2016
Please add me up
08034747769
olatunjiYSO(m): 12:36pm On Nov 19, 2016
Please do I need to be a super programmer before I can be considered to 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.
Geist(m): 4:06am On Nov 20, 2016
MULLAH123:
Hello guys, I completed the application and the plum test. what is next didn't see any more link to the homestudy test.
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:
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.
Okay. Thanks brother.

Reply)

FIRS To Recruit 1,250 New Staff

(Go Up)

Sections: How To . 32
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or s on Nairaland.