Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,151,806 members, 7,813,646 topics. Date: Tuesday, 30 April 2024 at 03:35 PM

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

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (620857 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) ... (193) (194) (195) (196) (197) (198) (199) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by Funkypunky: 1:12pm On Aug 14, 2018
DonPikko:
i didn't hear from you again, did you later submit like that

No i added some things more....i will send u my link bro
Re: Andela: IT Training And Job by Funkypunky: 1:17pm On Aug 14, 2018
princesweetman2:


let element = document.querySelector("element"wink.addEventListener(click, () => {});

Wat am basically trying to describe abv is.
1 cr8 / listen for a click event and
2 write s function to reload d page tongue


lolz..it is the function am talking about. lets say u want to make a whole window reload again....what will be the function code?
Re: Andela: IT Training And Job by princesweetman2(m): 1:20pm On Aug 14, 2018
Re: Andela: IT Training And Job by Funkypunky: 1:29pm On Aug 14, 2018
[quote author=princesweetman2 post=70268963]




https://codepen.io/soyedotun/full/MBLdrj[/quote

wonderful..
Re: Andela: IT Training And Job by princesweetman2(m): 1:54pm On Aug 14, 2018
Funkypunky:


Conditions
Check for equal length of strings
s.length !== t.length //Both string must have same length

"foo" and "bar" //false

"paper" and "title" //true

"egg" and "add" //true

Jara (My Conditions)
Check if s and t strings are not inputed
!s || !t // pls input s & t strings
Re: Andela: IT Training And Job by Nobody: 3:28pm On Aug 14, 2018
minions:
Wait fes. Wetin I dey read here no dey rhyme. I dey my own jeje when Andela send me mail as per member of ALC 3.0 to apply for Andela Cycle 36.1, I did.

I really didn't see myself as someone qualified for Andela fellowship. I wasn't exactly looking in their direction gan sef. Then I thought, well they did send me a mail asking me to apply. Perhaps they think I am ready.

My deadline for submission of the challenge was by (not before) August 13. I submitted on August 12, around 11:50pm. They even sent me a mail encouraging me to try and finish before August 13.

I am quite sure I am part of Cycle 36.1, but here I see people claiming to be part of cycle 36.1 saying they had a deadline of August 8th and stuff about interview.

Now I am really confused. I am yet to get any mail. I'm still waiting. I won't be happy if they simply raised my hope just to smash it.

Anyways, is there anyone here who was part of ALC 3.0 who was sent a mail by Andela to apply?

Lol, I have a friend that applied for ALC 36.1 because he was also part of ALC (I think it was specially opened for you guys ). The deadline was yesterday so you guys should be expecting your mails soon.

Cycle 36 deadline was August 08. So don't confuse yourself.
Keep calm.

36 is different from 36.1
Just like iPhone 6 and iPhone 6s smiley

1 Like

Re: Andela: IT Training And Job by minions(m): 3:37pm On Aug 14, 2018
DonPikko:
andela is the number one best company in nigeria

Lol... Yeah, I hear you.
Re: Andela: IT Training And Job by princesweetman2(m): 3:38pm On Aug 14, 2018
haywhyze:

Check ur mail bro
Re: Andela: IT Training And Job by minions(m): 3:43pm On Aug 14, 2018
shimmer1:


Lol, I have a friend that applied for ALC 36.1 because he was also part of ALC (I think it was specially opened for you guys ). The deadline was yesterday so you guys should be expecting your mails soon.

Cycle 36 deadline was August 08. So don't confuse yourself.
Keep calm.

36 is different from 36.1
Just like iPhone 6 and iPhone 6s smiley


Lol. Thanks.
Re: Andela: IT Training And Job by princesweetman2(m): 4:07pm On Aug 14, 2018
@everyone DonPikko haywhyze Funkypunky

in ur best explanation.
how wud u describe d exclamation statement blow.

ie
let s = foo;
if !s ? false : true
Re: Andela: IT Training And Job by Solomon27(m): 4:16pm On Aug 14, 2018
shimmer1:


Lol, I have a friend that applied for ALC 36.1 because he was also part of ALC (I think it was specially opened for you guys ). The deadline was yesterday so you guys should be expecting your mails soon.

Cycle 36 deadline was August 08. So don't confuse yourself.
Keep calm.

36 is different from 36.1
Just like iPhone 6 and iPhone 6s smiley

Yeah, I am yet to hear from them though
Re: Andela: IT Training And Job by Teletexter: 4:20pm On Aug 14, 2018
princesweetman2:
@everyone DonPikko haywhyze Funkypunky

in ur best explanation.
how wud u describe d exclamation statement blow.

ie
let s = foo;
if !s ? false : true

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_Operators#Logical_NOT_(!)
Re: Andela: IT Training And Job by DonPikko: 4:28pm On Aug 14, 2018
princesweetman2:
@everyone DonPikko haywhyze Funkypunky

in ur best explanation.
how wud u describe d exclamation statement blow.

ie
let s = foo;
if !s ? false : true
if s does not exist return false else return true

1 Like

Re: Andela: IT Training And Job by Funkypunky: 4:30pm On Aug 14, 2018
princesweetman2:
@everyone DonPikko haywhyze Funkypunky

in ur best explanation.
how wud u describe d exclamation statement blow.

ie
let s = foo;
if !s ? false : true


That is the ternary operator...
works thus...
if condition(!s) is true..that is.. if 's' value is not same as 'foo', lets say s= "prince", return "false"
but if condition is false ..that is.. s equals,is 'foo', return "true".

it all boils down to what makes condition true..the condition just require anything but "foo" to be true...

Humble explanation
Re: Andela: IT Training And Job by Solomon27(m): 4:44pm On Aug 14, 2018
Funkypunky:



That is the ternary operator...
works thus...
if condition(!s) is true..that is.. if 's' value is not same as 'foo', lets say s= "prince", return "false"
but if condition is true ..that is.. s equals,is 'foo', return "true".

it all boils down to what makes condition true..the condition just require anything but "foo" to be true...

Humble explanation

Another way to use Ternary Operators;

var dare = 45;

alert( (dare%2 === 0) ? "it is an even number" : "it is an odd number" );



That will if a number is even or odd!
Re: Andela: IT Training And Job by haywhyze(m): 5:29pm On Aug 14, 2018
The weird thing is I applied for both cycle 36 and 36.1 and everything from the first technical challenge and the qualified.io tests are same exact questions. So I kinda have expo through cycle 36 for 36.1. There's always a 5days difference between the activities. Just scared I'll have to be in two bootcamps at the same time if I passed the interview.

Also waiting for my second interview wink

I contacted a guy on their talent development team on twitter and he said it's fine, but I will have to explain in my first interview.
I'm enjoying the process now sha.

And I've applied for cycle 37 also.
I almost applied for 37.1 but I thought it will be too much. Or should I just apply?
Re: Andela: IT Training And Job by princesweetman2(m): 5:35pm On Aug 14, 2018
Teletexter DonPikko haywhyze Funkypunky

Thanks alot bosses.

Really appreciate.

2mor is my IV.

Who else s having his / her iv 2mor? Let's hook up wink
Re: Andela: IT Training And Job by princesweetman2(m): 5:37pm On Aug 14, 2018
haywhyze:
The weird thing is I applied for both cycle 36 and 36.1 and everything from the first technical challenge and the qualified.io tests are same exact questions. So I kinda have expo through cycle 36 for 36.1


Same here

Didn't apply to 37 & 37.1
Re: Andela: IT Training And Job by guente02(m): 1:25am On Aug 15, 2018
Solomon27:


Another way to use Ternary Operators;

var dare = 45;

alert( (dare%2 === 0) ? "it is an even number" : "it is an odd number" );



That will if a number is even or odd!

Zero (0) is a falsy value.

Truncating the strict comparison operator, the zero and parentheses would save few keystrokes las las.

alert( dare%2 ? "it is an even number" : "it is an odd number" );

Would return true if dare is even and otherwise(odd) if otherwise(false)...lol

Yours is more readable nonetheless.

1 Like

Re: Andela: IT Training And Job by Solomon27(m): 7:47am On Aug 15, 2018
guente02:


Zero (0) is a falsy value.

Truncating the strict comparison operator, the zero and parentheses would save few keystrokes las las.

alert( dare%2 ? "it is an even number" : "it is an odd number" );

Would return true if dare is even and otherwise(odd) if otherwise(false)...lol

Yours is more readable nonetheless.

It worked otherwise grin
Re: Andela: IT Training And Job by princesweetman2(m): 9:12am On Aug 15, 2018
Hello shimmer1.

Modified : @Lagosian29 be snooping upandan tongue

How many pupu has sub to ur yeye vids grin

3 Likes 1 Share

Re: Andela: IT Training And Job by Lagosian29(m): 9:30am On Aug 15, 2018
princesweetman2:

Modified : @Lagosian29 be snooping upandan tongue

My snoop, videos my business tongue

1 Like

Re: Andela: IT Training And Job by Lagosian29(m): 9:31am On Aug 15, 2018
Re: Andela: IT Training And Job by Lagosian29(m): 3:06pm On Aug 15, 2018
CONTACT ME FOR SOLUTIONS TO ANDELA HOMESTUDY CHALLENGE, IV CHALLENGE SND ANY JS CHALLENGE.

Cc minions gracechellar katako danose99 sheygz chidimmajuliet avast maigemuu
Re: Andela: IT Training And Job by princesweetman2(m): 3:11pm On Aug 15, 2018
Had d best of INTERVIEWS 2day.


PreBootCamp Challenge. #IAwait cool
Re: Andela: IT Training And Job by haywhyze(m): 4:59pm On Aug 15, 2018
princesweetman2:
Had d best of INTERVIEWS 2day.


PreBootCamp Challenge. #IAwait cool

How was it like?
Re: Andela: IT Training And Job by princesweetman2(m): 6:07pm On Aug 15, 2018
haywhyze:

How was it like?

There are 2 IVS
IV's - Gud afternoon, my name, colleagues name.
Me - Gud afternoon, my name.

IVS - We want u to be comftable.
Me - Smiles, I'm not pressurizing (leans 4wrd)

IVS - Can u define d function of ur code.
Me - Defines isomorphism.
Me (Cont) - Described d function of my code + d jara I coded in details.

IVS - Turns his system. Inputs blank space x 3 + egg for string 1 and space x 3 + add. Returns true.
Me - IV Challenge didn't require me to do dat. (remd wen stevenakp told me to have been super awesome wt my code) I reminded him dat I tested for no input which challenge didn't require me to do.

IVS - Have u worked in a team b4.
Me - yes describes my past working exp.

IVS - Have u received negative feedback from ur boss b4, describe.
Me - described a situation.

IVS - Wat do u undastsnd by EPIC.
Me - Andela requires anselans to depict d epic value which stands for e.p.I.c ( u know it ).

IVS - let's say we are both in d same team and one unfortunate morning I came 2d office with a hangover. Wat wud u do in dat situation.
Me - My team, team lead and line mgr are more or less my friend. I will advise him never to come to d office again wt a hangover.

IVS - wat if it repeats itself again.
Me - d HR wud b d one to take up d situation den.

IVS - Dats fair enof
Me - nods my head.

IVS - back to isomorphic function. Which string methods do u know.
Me - listed 2 to uppercase, lowercase ( head went blank ) and use iko to deviate. As a bad guy.

IVS - which string method wud u use to remove spaces in a string.
Me - talked small rubbish.

IVS - well, u still didn't answer my ?
Me - said I don't know in a slow motion.

IVS - gud, was expecting dat instead of dilly dallying. Explains d trim() method.
Me - in my head ( c my lyf )

IVS - wat wud u do if not selected.
Me - for me to av come ds far I blv I shud progress but if not selected I wud check for openings while improving on using sw engrng best practices.

IVS - Any question 4 us.
Me - asked 3 ?s. (personal shii)

IVS - dat wud be all. Have a nice day.
Me - returns greeting.

6 Likes

Re: Andela: IT Training And Job by DonPikko: 6:26pm On Aug 15, 2018
princesweetman2:


There are 2 IVS
IV's - Gud afternoon, my name, colleagues name.
Me - Gud afternoon, my name.

IVS - We want u to be comftable.
Me - Smiles, I'm not pressurizing (leans 4wrd)

IVS - Can u define d function of ur code.
Me - Defines isomorphism.
Me (Cont) - Described d function of my code + d jara I coded in details.

IVS - Turns his system. Inputs blank space x 3 + egg for string 1 and space x 3 + add. Returns true.
Me - IV Challenge didn't require me to do dat. (remd wen stevenakp told me to have been super awesome wt my code) I reminded him dat I tested for no input which challenge didn't require me to do.

IVS - Have u worked in a team b4.
Me - yes describes my past working exp.

IVS - Have u received negative feedback from ur boss b4, describe.
Me - described a situation.

IVS - Wat do u undastsnd by EPIC.
Me - Andela requires anselans to depict d epic value which stands for e.p.I.c ( u know it ).

IVS - let's say we are both in d same team and one unfortunate morning I came 2d office with a hangover. Wat wud u do in dat situation.
Me - My team, team lead and line mgr are more or less my friend. I will advise him never to come to d office again wt a hangover.

IVS - wat if it repeats itself again.
Me - d HR wud b d one to take up d situation den.

IVS - Dats fair enof
Me - nods my head.

IVS - back to isomorphic function. Which string methods do u know.
Me - listed 2 to uppercase, lowercase ( head went blank ) and use iko to deviate. As a bad guy.

IVS - which string method wud u use to remove spaces in a string.
Me - talked small rubbish.

IVS - well, u still didn't answer my ?
Me - said I don't know in a slow motion.

IVS - gud, was expecting dat instead of dilly dallying. Explains d trim() method.
Me - in my head ( c my lyf )

IVS - wat wud u do if not selected.
Me - for me to av come ds far I blv I shud progress but if not selected I wud check for openings while improving on using sw engrng best practices.

IVS - Any question 4 us.
Me - asked 3 ?s. (personal shii)

IVS - dat wud be all. Have a nice day.
Me - returns greeting.

nicccee interview, but how did you forget trim () method
Re: Andela: IT Training And Job by Funkypunky: 6:56pm On Aug 15, 2018
princesweetman2:

Prince my man!!. thanks for sharing bro...


There are 2 IVS
IV's - Gud afternoon, my name, colleagues name.
Me - Gud afternoon, my name.

IVS - We want u to be comftable.
Me - Smiles, I'm not pressurizing (leans 4wrd)

IVS - Can u define d function of ur code.
Me - Defines isomorphism.
Me (Cont) - Described d function of my code + d jara I coded in details.

IVS - Turns his system. Inputs blank space x 3 + egg for string 1 and space x 3 + add. Returns true.
Me - IV Challenge didn't require me to do dat. (remd wen stevenakp told me to have been super awesome wt my code) I reminded him dat I tested for no input which challenge didn't require me to do.

IVS - Have u worked in a team b4.
Me - yes describes my past working exp.

IVS - Have u received negative feedback from ur boss b4, describe.
Me - described a situation.

IVS - Wat do u undastsnd by EPIC.
Me - Andela requires anselans to depict d epic value which stands for e.p.I.c ( u know it ).

IVS - let's say we are both in d same team and one unfortunate morning I came 2d office with a hangover. Wat wud u do in dat situation.
Me - My team, team lead and line mgr are more or less my friend. I will advise him never to come to d office again wt a hangover.

IVS - wat if it repeats itself again.
Me - d HR wud b d one to take up d situation den.

IVS - Dats fair enof
Me - nods my head.

IVS - back to isomorphic function. Which string methods do u know.
Me - listed 2 to uppercase, lowercase ( head went blank ) and use iko to deviate. As a bad guy.

IVS - which string method wud u use to remove spaces in a string.
Me - talked small rubbish.

IVS - well, u still didn't answer my ?
Me - said I don't know in a slow motion.

IVS - gud, was expecting dat instead of dilly dallying. Explains d trim() method.
Me - in my head ( c my lyf )

IVS - wat wud u do if not selected.
Me - for me to av come ds far I blv I shud progress but if not selected I wud check for openings while improving on using sw engrng best practices.

IVS - Any question 4 us.
Me - asked 3 ?s. (personal shii)

IVS - dat wud be all. Have a nice day.
Me - returns greeting.

1 Like

Re: Andela: IT Training And Job by princesweetman2(m): 7:21pm On Aug 15, 2018
DonPikko:
nicccee interview, but how did you forget trim () method

Bros

Me sef wonder o.

grin
Re: Andela: IT Training And Job by DonPikko: 7:26pm On Aug 15, 2018
princesweetman2:


Bros

Me sef wonder o.

grin
hope your they were satisfied with your solution, all the best man

1 Like

Re: Andela: IT Training And Job by princesweetman2(m): 7:33pm On Aug 15, 2018
DonPikko:
hope your they were satisfied with your solution, all the best man

Sure

Code passed reqd year

Thanks

(1) (2) (3) ... (193) (194) (195) (196) (197) (198) (199) ... (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. 59
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.