Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,205,769 members, 7,993,711 topics. Date: Monday, 04 November 2024 at 04:42 PM |
Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (642631 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) ... (190) (191) (192) (193) (194) (195) (196) ... (263) (Reply) (Go Down)
Re: Andela: IT Training And Job by guente02(m): 12:01pm On Aug 11, 2018 |
minions:You seem to be spelling length as lenght. Check that and reiterate through your logic. You're getting something wrong somewhere in there. |
Re: Andela: IT Training And Job by princesweetman2(m): 1:06pm On Aug 11, 2018 |
1 Like |
Re: Andela: IT Training And Job by Solomon27(m): 1:18pm On Aug 11, 2018 |
I did my Home Study Test lastweek, no response yet |
Re: Andela: IT Training And Job by Vicotu2009: 1:42pm On Aug 11, 2018 |
shimmer1:Will do, thanks. |
Re: Andela: IT Training And Job by haywhyze(m): 1:48pm On Aug 11, 2018 |
Code challenge has arrived...
Check your emails and get your programming hats on...
Time to go into hackersMode. Best of luck Deadline is still 4pm on Tuesday 1 Like |
Re: Andela: IT Training And Job by princesweetman2(m): 1:52pm On Aug 11, 2018 |
haywhyze: Hallelujah 1 Like |
Re: Andela: IT Training And Job by DonPikko: 2:16pm On Aug 11, 2018 |
minions:longest word in a sentence?, you might not need to use a loop tho, just convert to array, then sort asc, then return the first item 1 Like |
Re: Andela: IT Training And Job by TheKabal: 3:03pm On Aug 11, 2018 |
stevenakp: Is Andela a JS shop? Seen work from https://github.com/mbithenzomo, who is a fellow @andela. It is Python mostly. |
Re: Andela: IT Training And Job by stevenakp(m): 3:25pm On Aug 11, 2018 |
TheKabal: No, Andela is not a JS shop. However all developers do JS during recuitment and simulations in Andela Nigeria. |
Re: Andela: IT Training And Job by Solomon27(m): 3:32pm On Aug 11, 2018 |
Re: Andela: IT Training And Job by stephenkhalaf(m): 5:28pm On Aug 11, 2018 |
. |
Re: Andela: IT Training And Job by stephenkhalaf(m): 5:40pm On Aug 11, 2018 |
. |
Re: Andela: IT Training And Job by stevenakp(m): 5:48pm On Aug 11, 2018 |
stephenkhalaf: |
Re: Andela: IT Training And Job by TheKabal: 7:40pm On Aug 11, 2018 |
stevenakp: Thank you. Will fill in an application. |
Re: Andela: IT Training And Job by DonPikko: 8:00pm On Aug 11, 2018 |
benfluleck I couldn't find you at concatenate |
Re: Andela: IT Training And Job by stevenakp(m): 8:47pm On Aug 11, 2018 |
Re: Andela: IT Training And Job by minions(m): 10:22pm On Aug 11, 2018 |
guente02: Thanks man. My brain been dey turn |
Re: Andela: IT Training And Job by benfluleck: 1:21am On Aug 12, 2018 |
DonPikko: Lol do you even know what I look like? If you do then I was pretty hard to miss |
Re: Andela: IT Training And Job by Lagosian29(m): 8:55am On Aug 12, 2018 |
DonPikko: conditionals and event listeners dey show me pepper for dis armstrong o my problem is HTML ... <!doctype html> <html> <head> <title>Armstrong</title> </head> <body> <h2>App to check whether an integer is Armstrong number or not</h2> <p>Please input a 3 digit number</p> <input id="input"> <!-- input field which takes in the number to be checked --> <button type="button" id="button" onclick="myFunction()" disabled="disabled">Check</button><br><br> <!-- run check --> <div id="display"></div> <!-- display the result --> <script src="as.js"></script> </body> </html> disabled="disabled" <!-- makes button disabled by default --> ... NOW HOW DO I CALL IT WTH EVENTLISTENERS TO UNDO DEFAULT IF DIGIT (INPUT.LENGTH) == 3 function myFunction() { var armstrong = 0, a, num; num = Number(document.getElementById("input".value); temp = num; while (temp > 0) { a = temp % 10; // convert float into Integer temp = parseInt(temp/10); armstrong = armstrong + a * a * a; } if (armstrong != num) { let element = document.getElementById("input".value; value = element.toString(); // if length of armstrong < || > 3 if (value.length < 3 || value.length > 3) { document.getElementById("button".disabled = false; text = "Invalid length of integer"; document.getElementById("display".innerHTML = text; } else { document.getElementById("button".disabled = false; text = "Not Armstrong number"; document.getElementById("display".innerHTML = text; } } else { text = "Armstrong number"; document.getElementById("button".disabled = false; document.getElementById("display".innerHTML = text; } } |
Re: Andela: IT Training And Job by DonPikko: 9:02am On Aug 12, 2018 |
Lagosian29:use add event Listener, then run your conditionals in it, target the value, then display the submit button it it's equal to 3 |
Re: Andela: IT Training And Job by NE555: 9:07am On Aug 12, 2018 |
Please am having Andela circle 37 very soon and I have been practicing Please how does the questions look like?? Please help a bro |
Re: Andela: IT Training And Job by NE555: 9:08am On Aug 12, 2018 |
How many exercise?? How many minutes?? Help a bro please |
Re: Andela: IT Training And Job by Lagosian29(m): 9:10am On Aug 12, 2018 |
DonPikko: ok chai, my brain need small spanking correct guy, i don work am |
Re: Andela: IT Training And Job by Lagosian29(m): 9:11am On Aug 12, 2018 |
NE555: keep studying at ur own pace or subscribe to my signature |
Re: Andela: IT Training And Job by DonPikko: 9:13am On Aug 12, 2018 |
Lagosian29:use display instead, then set input type to hidden, I'm not sure if disabled is a CSS property |
Re: Andela: IT Training And Job by Lagosian29(m): 9:15am On Aug 12, 2018 |
DonPikko: whch one u dey work on |
Re: Andela: IT Training And Job by DonPikko: 9:17am On Aug 12, 2018 |
Lagosian29:I don't get you |
Re: Andela: IT Training And Job by NE555: 9:25am On Aug 12, 2018 |
Lagosian29: Hahahaha Bros please just tell me how the test looks like so that I can know what to prepare for |
Re: Andela: IT Training And Job by Nobody: 8:09pm On Aug 12, 2018 |
NE555:Firstly, you'll be sent a Google form test(that will be the very first) they are like 30 questions or something(multichoice). They are not timed and it's better to study the home study curriculum well, Google too can be of help for tricky parts. It's better you take your time to do it. If you pass this phase, you are sent another technical test on qualified io(multichoice with few coding questions). It's timed, but you won't run out of time After the qualified io, if you did well, you'll be invited for an interview(you'll submit a code challenge before the interview, and defend it to the interviewers). If the interview is successful, you get selected for boot camp and so on.... Note: if you've not gotten your self right with programming, you shouldn't go to boot camp, but it's not to late to start working on yourself rigorously. PS: cycle 37 is the last for this year. The next application opens next year. 1 Like |
Re: Andela: IT Training And Job by dolapo17: 10:16pm On Aug 12, 2018 |
hi everyone im having issues submiting my interview solutions via the form sent. is anyone having this problem too |
Re: Andela: IT Training And Job by dolapo17: 10:16pm On Aug 12, 2018 |
cycle 36 dolapo17: |
(1) (2) (3) ... (190) (191) (192) (193) (194) (195) (196) ... (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
Viewing this topic: 1 guest(s)
(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. 29 |