Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,169,217 members, 7,873,963 topics. Date: Thursday, 27 June 2024 at 10:15 PM

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

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (628080 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) ... (120) (121) (122) (123) (124) (125) (126) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by mena233(f): 5:58pm On Oct 13, 2016
Please add me 08064225222
Re: Andela: IT Training And Job by Jaynewrite(f): 6:28pm On Oct 13, 2016
Please add me to the whatsapp group, I really need help 08029112061
Re: Andela: IT Training And Job by Inkyillusion(m): 7:24am On Oct 15, 2016
Hmmmmmmm. Females only.
Re: Andela: IT Training And Job by JackOfAllTrades: 11:24pm On Oct 15, 2016
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.

2 Likes

Re: Andela: IT Training And Job by JackOfAllTrades: 12:46pm On Oct 16, 2016
click on this link to join the WhatsApp group https:///ESsdHaj7eFH53DVCm2sopd

3 Likes 1 Share

Re: Andela: IT Training And Job by Zetra(m): 6:06pm On Oct 17, 2016
080..
Re: Andela: IT Training And Job by Nobody: 10:10am On Oct 20, 2016
am having problem with this question
According to the description of R-rated films: Children under 17 require an accompanying parent or adult guardian (age 21 or older) and adults 25 years and under must show ID. And children under the age of 6 are not allowed in after 6:00pm.

Deadpool is an R-rated movie.

Write a JavaScript function named canIWatch that will take age as a parameter.

If the age is less than 6, return You are not allowed to watch Deadpool after 6.00pm.

If the age is 6 or more but less than 17, return You must be accompanied by a guardian who is 21 or older.

If the age is 17 or more but less than 25, return You are allowed to watch Deadpool, right after you show some ID.

If the age is 25 or greater, return Yay! You can watch Deadpool with no strings attached!.

If the age is invalid, return Invalid age.
Re: Andela: IT Training And Job by Nobody: 10:10am On Oct 20, 2016
am having problem with this question,please can anyone help
According to the description of R-rated films: Children under 17 require an accompanying parent or adult guardian (age 21 or older) and adults 25 years and under must show ID. And children under the age of 6 are not allowed in after 6:00pm.

Deadpool is an R-rated movie.

Write a JavaScript function named canIWatch that will take age as a parameter.

If the age is less than 6, return You are not allowed to watch Deadpool after 6.00pm.

If the age is 6 or more but less than 17, return You must be accompanied by a guardian who is 21 or older.

If the age is 17 or more but less than 25, return You are allowed to watch Deadpool, right after you show some ID.

If the age is 25 or greater, return Yay! You can watch Deadpool with no strings attached!.

If the age is invalid, return Invalid age.
Re: Andela: IT Training And Job by Geist(m): 11:58am On Oct 20, 2016
Libber:
am having problem with this question,please can anyone help
According to the description of R-rated films: Children under 17 require an accompanying parent or adult guardian (age 21 or older) and adults 25 years and under must show ID. And children under the age of 6 are not allowed in after 6:00pm.

Deadpool is an R-rated movie.

Write a JavaScript function named canIWatch that will take age as a parameter.

If the age is less than 6, return You are not allowed to watch Deadpool after 6.00pm.

If the age is 6 or more but less than 17, return You must be accompanied by a guardian who is 21 or older.

If the age is 17 or more but less than 25, return You are allowed to watch Deadpool, right after you show some ID.

If the age is 25 or greater, return Yay! You can watch Deadpool with no strings attached!.

If the age is invalid, return Invalid age.
let's see the code you have written. Then we can take it from there
Re: Andela: IT Training And Job by Spyde(m): 2:30pm On Oct 20, 2016
Libber:
am having problem with this question,please can anyone help
According to the description of R-rated films: Children under 17 require an accompanying parent or adult guardian (age 21 or older) and adults 25 years and under must show ID. And children under the age of 6 are not allowed in after 6:00pm.

Deadpool is an R-rated movie.

Write a JavaScript function named canIWatch that will take age as a parameter.

If the age is less than 6, return You are not allowed to watch Deadpool after 6.00pm.

If the age is 6 or more but less than 17, return You must be accompanied by a guardian who is 21 or older.

If the age is 17 or more but less than 25, return You are allowed to watch Deadpool, right after you show some ID.

If the age is 25 or greater, return Yay! You can watch Deadpool with no strings attached!.

If the age is invalid, return Invalid age.


let's see what u've done, so we Cn know how to help
Re: Andela: IT Training And Job by Yomi124: 6:10pm On Oct 21, 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 08128119692
Hello please I cameacross andela late and since it's a female ish for this batch I figured I should just read the home studycurriculum ahead of the next one as preparation. I'm stuck on the module for algorithms please I need someone to help me out and please add me to the whatsapp askafellow group thanks my no is 08187961310
Re: Andela: IT Training And Job by thibcyrain: 7:33am On Oct 22, 2016
[quote author=D34lw4p post=48521306]
Try:
def get_algorithm_result(listNum):
largest = listNum[0]
for i in range(1, len(listNum)):
if largest < listNum[i]:
largest = listNum[i]
return (largest)

This is likely to fail a test case and I.e when you parse in an empty list.
E.g
Listnum =[]
In---Print(" get_algorithm_result(ListNum))
Out----IndexError
Am no really too sure if this test case might be running internally,but there is a possibility though.

So why don't use this.
--------------------------------------
Try:
def get_algorithm_result(listNum):
largest = listNum[0]
for i in range(1, len(listNum)):
if largest < listNum[i]:
largest = listNum[i]
return (largest)
except IndexError:
raise valueError
Re: Andela: IT Training And Job by Nobody: 10:16am On Oct 22, 2016
thanks I have done it,I use the if and else if statement
Re: Andela: IT Training And Job by excel4me: 8:02pm On Oct 23, 2016
Please add me 08034237569
Re: Andela: IT Training And Job by excel4me: 6:59am On Oct 24, 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 08034237569
Re: Andela: IT Training And Job by Bluemoon1(f): 9:05am On Oct 24, 2016
AroogzBaba:
#Please I need help with this. The code passes all the visible test but fails hidden test
#Thanks

class BankAccount:

def withdraw():
pass

def deposit():
pass

class SavingsAccount(BankAccount):

def __init__(self):
#if self.balance != 500:
#raise ValueError()
self.balance = 500

@property
def balance(self):
return self.__balance

@balance.setter
def balance(self, amount):
if type(amount) == int or type(amount) == float:
if amount >= 500:
self.__balance = amount
else:
return
else:
raise ValueError()


def deposit(self, amount):
if type(amount) == int or type(amount) == float:
if amount < 0:
return "Invalid deposit amount"
self.balance += amount
return self.balance
else:
raise ValueError()

def withdraw(self, amount):
if type(amount) == int or type(amount) == float:

if amount < 0:
return "Invalid withdraw amount"
elif amount > self.balance:
return "Cannot withdraw beyond the current account balance"
elif (self.balance - amount) < 500:
return "Cannot withdraw beyond the minimum account balance"
self.balance -= amount
return self.balance
else:
raise ValueError()

class CurrentAccount(BankAccount):
def __init__(self):
self.balance = 0

@property
def balance(self):
return self._balance

@balance.setter
def balance(self, amount):
if type(amount) == int or type(amount) == float:
if amount >= 0:
self._balance = amount
else:
return
else:
raise ValueError()

def deposit(self, amount):
if type(amount) == int or type(amount) == float:

if amount < 0:
return "Invalid deposit amount."
self.balance += amount
return self.balance
else:
raise ValueError()
def withdraw(self, amount):
if type(amount) == int or type(amount) == float:

if amount < 0:
return "Invalid withdraw amount"
elif self.balance < amount:
return "Cannot withdraw beyond the current account balance"
else:
self.balance -= amount
return self.balance
else:
raise ValueError()


Having same problem? have you solved it? and how did you?
Re: Andela: IT Training And Job by Nobody: 10:04am On Oct 24, 2016
class BankAccount(object): def withdraw(): pass
def deposit(): pass

class SavingsAccount(BankAccount): def __init__(self): self.balance = 500
def deposit(self, amount): if amount < 0: return "Invalid deposit amount" else: self.balance += amount return self.balance
def withdraw(self, amount): if amount < 0: return "Invalid withdraw amount" elif amount > self.balance: return "Cannot withdraw beyond the current account balance" elif (self.balance - amount) < 500: return "Cannot withdraw beyond the minimum account balance" else: self.balance -= amount return self.balance

class CurrentAccount(BankAccount): def __init__(self): self.balance = 0
def deposit(self, amount): if amount < 0: return "Invalid deposit amount" else: self.balance += amount return self.balance
def withdraw(self, amount): if amount < 0: return "Invalid withdraw amount" elif self.balance < amount: return "Cannot withdraw beyond the current account balance" else: self.balance -= amount
Re: Andela: IT Training And Job by Nobody: 10:05am On Oct 24, 2016
Libber:
class BankAccount(object): def withdraw(): pass
def deposit(): pass

class SavingsAccount(BankAccount): def __init__(self): self.balance = 500
def deposit(self, amount): if amount < 0: return "Invalid deposit amount" else: self.balance += amount return self.balance
def withdraw(self, amount): if amount < 0: return "Invalid withdraw amount" elif amount > self.balance: return "Cannot withdraw beyond the current account balance" elif (self.balance - amount) < 500: return "Cannot withdraw beyond the minimum account balance" else: self.balance -= amount return self.balance

class CurrentAccount(BankAccount): def __init__(self): self.balance = 0
def deposit(self, amount): if amount < 0: return "Invalid deposit amount" else: self.balance += amount return self.balance
def withdraw(self, amount): if amount < 0: return "Invalid withdraw amount" elif self.balance < amount: return "Cannot withdraw beyond the current account balance" else: self.balance -= amount
arrange it
Re: Andela: IT Training And Job by Nobody: 3:45pm On Oct 24, 2016
Hello everyone!

I am so new on this thread, i just applied for the andela program, i would appreciate a add up on the whatsApp group, as i realise i have a limited time left and i need every assistance i can get. My number is 0813-786-3040.


I really look forward to being a part of this great minds team on whatsapp, thanks in anticipation.
Re: Andela: IT Training And Job by Yomi124: 9:10am On Oct 25, 2016
Hello everyone please I'm newto andela..... Apparently this batch is for females but in preparation for the next batch I decided to study the home study curriculum but I've come to a stumbling block... I can't seem to understand the module on algorithms I need some putting Through and also have some questions about andela in general. I'd appreciate if I'm added to the ask a fellow whatsapp group thanks my no is 08187961310
Re: Andela: IT Training And Job by ifynwabuokei(f): 12:25pm On Oct 25, 2016
Libber:
am having problem with this question,please can anyone help
According to the description of R-rated films: Children under 17 require an accompanying parent or adult guardian (age 21 or older) and adults 25 years and under must show ID. And children under the age of 6 are not allowed in after 6:00pm.

Deadpool is an R-rated movie.

Write a JavaScript function named canIWatch that will take age as a parameter.

If the age is less than 6, return You are not allowed to watch Deadpool after 6.00pm.

If the age is 6 or more but less than 17, return You must be accompanied by a guardian who is 21 or older.

If the age is 17 or more but less than 25, return You are allowed to watch Deadpool, right after you show some ID.

If the age is 25 or greater, return Yay! You can watch Deadpool with no strings attached!.

If the age is invalid, return Invalid age.


Pls I need assistance on how do go about the tax lab..still experiencing errors
Re: Andela: IT Training And Job by Bluemoon1(f): 6:21pm On Oct 26, 2016
Please i need help on object oriented lab. been on this for days. it passes all the tests but i guess it doesn't pass the hidden test. Here's my code


class BankAccount:
def __init__(self):
pass
def withdraw():
pass
def deposit():
pass

class SavingsAccount(BankAccount):

def __init__(self):
BankAccount.__init__(self)
self.balance = 500
def deposit(self, amount):
if amount>0:
self.balance += amount
return self.balance
else:
return "Invalid deposit amount"

def withdraw(self, amount):
if self.balance-amount < 500:
return 'Cannot withdraw beyond the current account balance'
elif amount<0:
return "Invalid deposit amount"
else:
self.balance -=amount
return self.balance

class CurrentAccount(BankAccount):

def __init__(self):
BankAccount.__init__(self)
self.balance = 0
def deposit(self, amount):
if amount>0:
self.balance += amount
return self.balance
else:
return "Invalid deposit amount"

def withdraw(self, amount):
if self.balance-amount<0:
return 'Cannot withdraw beyond the current account balance'
elif amount<0:
return "Invalid deposit amount"
else:
self.balance -=amount
return self.balance
Re: Andela: IT Training And Job by ladiadeniran(m): 6:26pm On Oct 27, 2016
Bluemoon1:
Please i need help on object oriented lab. been on this for days. it passes all the tests but i guess it doesn't pass the hidden test. Here's my code


class BankAccount:
def __init__(self):
pass
def withdraw():
pass
def deposit():
pass

class SavingsAccount(BankAccount):

def __init__(self):
BankAccount.__init__(self)
self.balance = 500
def deposit(self, amount):
if amount>0:
self.balance += amount
return self.balance
else:
return "Invalid deposit amount"

def withdraw(self, amount):
if self.balance-amount < 500:
return 'Cannot withdraw beyond the current account balance'
elif amount<0:
return "Invalid deposit amount"
else:
self.balance -=amount
return self.balance

class CurrentAccount(BankAccount):

def __init__(self):
BankAccount.__init__(self)
self.balance = 0
def deposit(self, amount):
if amount>0:
self.balance += amount
return self.balance
else:
return "Invalid deposit amount"

def withdraw(self, amount):
if self.balance-amount<0:
return 'Cannot withdraw beyond the current account balance'
elif amount<0:
return "Invalid deposit amount"
else:
self.balance -=amount
return self.balance
Going through codes that are not well structured is difficult for me a bad habit I have, but this code worked the last time and should work, you can just see places there are variations with your code


class BankAccount:
def deposit(self):
return "No implementation"

def withdraw(self):
return "No implementation"

class SavingsAccount(BankAccount):
def __init__(self):
balance = 500
self.balance = balance

def deposit(self, cash_deposit):
if cash_deposit < 0:
return "Invalid deposit amount"
else:
self.balance = self.balance + cash_deposit
return self.balance

def withdraw(self, cash_withdrawal):
if (0 <= self.balance - cash_withdrawal < 500):
return "Cannot withdraw beyond the minimum account balance"
elif (self.balance < cash_withdrawal):
return "Cannot withdraw beyond the current account balance"
elif (cash_withdrawal < 0):
return "Invalid withdraw amount"
else:
self.balance = self.balance - cash_withdrawal
return self.balance

class CurrentAccount(BankAccount):
def __init__(self):
balance = 0
self.balance = balance

def deposit(self, cash_deposit):
if cash_deposit < 0:
return "Invalid deposit amount"
else:
self.balance = self.balance + cash_deposit
return self.balance
def withdraw(self,cash_withdrawal):
if cash_withdrawal < 0:
return "Invalid withdraw amount"
elif (self.balance - cash_withdrawal < 0):
return "Cannot withdraw beyond the current account balance"
else:
self.balance = self.balance - cash_withdrawal
return self.balance
Re: Andela: IT Training And Job by ahms12(m): 6:36pm On Oct 27, 2016
hi..I just came across this andela now.I will appreciate it if you can add me to the whatapp group. 08063226059
Re: Andela: IT Training And Job by hermosa01(f): 6:24pm On Oct 28, 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.
Re: Andela: IT Training And Job by Bluemoon1(f): 3:55am On Oct 31, 2016
I keep getting "quiz was not initialized" or invalid submission" when submitting quiz 6. [b]Can someone please help me? [/b]I successfully submitted quiz 7 but quiz 6 keeps giving error.
Re: Andela: IT Training And Job by yusfe4real: 9:24am On Oct 31, 2016
kindly add me to the group....08132549607
Re: Andela: IT Training And Job by JackOfAllTrades: 7:41pm On Oct 31, 2016
Bluemoon1:
I keep getting "quiz was not initialized" or invalid submission" when submitting quiz 6. [b]Can someone please help me? [/b]I successfully submitted quiz 7 but quiz 6 keeps giving error.
Hi have you fixed your issues?
Re: Andela: IT Training And Job by deanoffaculty: 2:11am On Nov 02, 2016
Please add this number to the whatsapp group- 07065058501
Re: Andela: IT Training And Job by Chimexola: 9:11am On Nov 03, 2016
Hi guys what should I do?
It seems my login has been compromised. grin
I can't login to my home study quiz.

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

Deadline is tomorrow. grin grin grin

I am using Google Chrome.
I have clicked on forgotten password 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
Re: Andela: IT Training And Job by Chimexola: 9:13am On Nov 03, 2016
1
Re: Andela: IT Training And Job by Chimexola: 9:15am On Nov 03, 2016
Add 08186557113 to the group

(1) (2) (3) ... (120) (121) (122) (123) (124) (125) (126) ... (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. 54
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.