Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,282 members, 7,815,478 topics. Date: Thursday, 02 May 2024 at 01:03 PM

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

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (621190 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:
Can someone tell me what might be wrong with this?
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
stephenkhalaf:

Bros shez my friend o. Pls

We just had little fracas

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:


Uwc, and also crosscheck most of what you do.
You might have made some mistakes in the answers.
Read the home study well.
Stay calm
And don't rush the assessment, take your time.
From my own experience though.
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:
Code challenge has arrived

Hallelujah

1 Like

Re: Andela: IT Training And Job by DonPikko: 2:16pm On Aug 11, 2018
minions:
Can someone tell me what might be wrong with this?
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:


undecided undecided undecided undecided undecided undecided undecided undecided undecided undecided undecided undecided
Concentrate on your bootcamp.

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:


Is Andela a JS shop?

Seen work from https://github.com/mbithenzomo, who is a fellow @andela.
It is Python mostly.

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:
grin grin grin, stevenakp my nigga

cool cool
Re: Andela: IT Training And Job by TheKabal: 7:40pm On Aug 11, 2018
stevenakp:


No, Andela is not a JS shop. However all developers do JS during recuitment and simulations in Andela Nigeria.

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
TheKabal:


Thank you. Will fill in an application.

Great!!!!
You're welcome.
Re: Andela: IT Training And Job by minions(m): 10:22pm On Aug 11, 2018
guente02:

You seem to be spelling length as lenght. Check that and reiterate through your logic. You're getting something wrong somewhere in there.

Thanks man. My brain been dey turn
Re: Andela: IT Training And Job by benfluleck: 1:21am On Aug 12, 2018
DonPikko:
benfluleck I couldn't find you at concatenate

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

embarassed

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"wink.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"wink.value;
value = element.toString();

// if length of armstrong < || > 3
if (value.length < 3 || value.length > 3) {
document.getElementById("button"wink.disabled = false;
text = "Invalid length of integer";
document.getElementById("display"wink.innerHTML = text;
} else {
document.getElementById("button"wink.disabled = false;
text = "Not Armstrong number";
document.getElementById("display"wink.innerHTML = text;
}
} else {
text = "Armstrong number";
document.getElementById("button"wink.disabled = false;
document.getElementById("display"wink.innerHTML = text;
}
}
Re: Andela: IT Training And Job by DonPikko: 9:02am On Aug 12, 2018
Lagosian29:


conditionals and event listeners dey show me pepper for dis armstrong o

embarassed

my problem is

HTML
...
<button type="button" id="button" onclick="myFunction()" disabled="disabled">Check</button><br><br>
disabled="disabled" <!-- makes button disabled by default -->
...

NOW HOW DO I CALL IT WTH EVENTLISTENERS TO UNDO DEFAULT IF DIGIT (INPUT.LENGTH) == 3
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:
use add event Listener, then run your conditionals in it, target the value, then display the submit button it it's equal to 3

ok

chai, my brain need small spanking

correct guy, i don work am cheesy
Re: Andela: IT Training And Job by Lagosian29(m): 9:11am On Aug 12, 2018
NE555:
How many exercise??
How many minutes??
Help a bro please

keep studying at ur own pace

or subscribe to my signature grin
Re: Andela: IT Training And Job by DonPikko: 9:13am On Aug 12, 2018
Lagosian29:


ok
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:
use display instead, then set input type to hidden, I'm not sure if disabled is a CSS property

whch one u dey work on
Re: Andela: IT Training And Job by DonPikko: 9:17am On Aug 12, 2018
Lagosian29:


whch one u dey work on
I don't get you
Re: Andela: IT Training And Job by NE555: 9:25am On Aug 12, 2018
Lagosian29:


keep studying at ur own pace

or subscribe to my signature grin

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:
Please am having Andela circle 37 very soon and I have been practicing
Please how does the questions look like??
Please help a bro
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:
hi everyone im having issues submiting my interview solutions via the form sent. is anyone having this problem too

(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

(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. 32
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.