Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,148,516 members, 7,801,366 topics. Date: Thursday, 18 April 2024 at 02:20 PM

I Want To Learn Programming. Which Language Should I Start With? - Programming (100) - Nairaland

Nairaland Forum / Science/Technology / Programming / I Want To Learn Programming. Which Language Should I Start With? (658090 Views)

As A Computer Science Student,which Language Should I Start Learning / Which Programming Language Should He Go For? / I Want To Learn Computer Programming, What Language Should I Learn First? (2) (3) (4)

(1) (2) (3) ... (97) (98) (99) (100) (101) (102) (103) ... (165) (Reply) (Go Down)

Re: I Want To Learn Programming. Which Language Should I Start With? by adityabest: 2:15pm On Oct 25, 2018
online web programming tutorial https://www.welookups.com
Re: I Want To Learn Programming. Which Language Should I Start With? by philo4realz: 10:47am On Oct 29, 2018
TrueHeart365:


follow @john morris on youtube. he's the go to guy for freelancing advise.

you need to learn freelancing as a skill on it's own. also follow @kyle prinsolo


Hey bro, do u have kyle prinsolo complete web developer freelancing bundle?

2 Likes

Re: I Want To Learn Programming. Which Language Should I Start With? by kennedythacode: 10:25am On Oct 31, 2018
For all your Udemy free courses, download this app to download them at a go.....this will be extremely helpful for all those willing to learn programming. https://play.google.com/store/apps/details?id=com.atornel.tutemy

2 Likes

Re: I Want To Learn Programming. Which Language Should I Start With? by horia: 1:04pm On Nov 01, 2018
Please I have been trying to invoke python prompt on windows command prompt. On Linux I only have to type python3
But the commands I've tried on windows command prompt are not working. Someone was talking of directories but I don't understand what it means.
Re: I Want To Learn Programming. Which Language Should I Start With? by dgee1(m): 5:14pm On Nov 01, 2018
Good day house, please I am complete novice in programing but trying to build myself up on the skill. I got an e-book from a friend but it isn't so very practical.

Please what steps could I take that will help me learn very fast. Thank you
Re: I Want To Learn Programming. Which Language Should I Start With? by dontro(m): 7:16am On Nov 02, 2018
horia:
Please I have been trying to invoke python prompt on windows command prompt. On Linux I only have to type python3
But the commands I've tried on windows command prompt are not working. Someone was talking of directories but I don't understand what it means.

Please Google how to install Python in [your OS].

To check if you have Python installed, open Windows CMD and type: python --version
OR type python -V
Re: I Want To Learn Programming. Which Language Should I Start With? by horia: 7:48pm On Nov 04, 2018
dontro:


Please Google how to install Python in [your OS].

To check if you have Python installed, open Windows CMD and type: python --version
OR type python -V
I realized that directory was the file storage path so I changed directory to where the python file was stored and ran it with C:\python file name then file application name.
I.e C:\python-3.7.1-embed-amd64
Then, python.
Re: I Want To Learn Programming. Which Language Should I Start With? by KronicMorris(m): 11:48am On Nov 05, 2018
.
Re: I Want To Learn Programming. Which Language Should I Start With? by KronicMorris(m): 11:51am On Nov 05, 2018
dgee1:
Good day house, please I am complete novice in programing but trying to build myself up on the skill. I got an e-book from a friend but it isn't so very practical.

Please what steps could I take that will help me learn very fast. Thank you

Can you handle learning very fast?, If you put your Mind in that, then you might not be productive, take your time to learn efficiently.

What do you use for Coding, PC or Mobile?
Re: I Want To Learn Programming. Which Language Should I Start With? by dgee1(m): 12:19pm On Nov 05, 2018
KronicMorris:


Can you handle learning very fast?, If you put your Mind in that, then you might not be productive, take your time to learn efficiently.

What do you use for Coding, PC or Mobile?

Thank you very much for the advice. I use my Laptop but as I said I'm still a rookie and just learning.
Re: I Want To Learn Programming. Which Language Should I Start With? by Nobody: 2:36pm On Nov 05, 2018
please, I need the guru in the house to help me check this JAVASCRIPT. no error is shown by chrome console and yet the program is not running,


function submitAnswers(){
var total= 20;
var score= 0;


// Get user input

var q1 = document.forms["quizForm"]["q1"].value;
var q2 = document.forms["quizForm"]["q2"].value;
var q3 = document.forms["quizForm"]["q3"].value;
var q4 = document.forms["quizForm"]["q4"].value;
var q5 = document.forms["quizForm"]["q5"].value;
var q6 = document.forms["quizForm"]["q6"].value;
var q7= document.forms["quizForm"]["q7"].value;
var q8= document.forms["quizForm"]["q8"].value;
var q9= document.forms["quizForm"]["q9"].value;
var q10= document.forms["quizForm"]["q10"].value;
var q11= document.forms["quizForm"]["q11"].value;
var q12= document.forms["quizForm"]["q12"].value;
var q13= document.forms["quizForm"]["q13"].value;
var q14= document.forms["quizForm"]["q14"].value;
var q15= document.forms["quizForm"]["q15"].value;
var q16= document.forms["quizForm"]["q16"].value;
var q17= document.forms["quizForm"]["q17"].value;
var q18= document.forms["quizForm"]["q18"].value;
var q19= document.forms["quizForm"]["q19"].value;
var q20= document.forms["quizForm"]["q20"].value;


// Validation
for(i=1; i<=total; i++){
if (eval('q'+ i) == null || eval('q' + i) == ''){

alert("Enter an answer for question" +' '+ i);
return false;
}
}



var answers = ["b","c","a","c","d","c","b","b","a","b","d","a","d","b","d","b","d","d","c","b"];


// Check Answer

for(i=1; i <= total; i++){
if (eval('q'+ i) == answers[i-1]){
score++;
}
}

//Display Result
document.getElementByid('results').innerHTML =
'<h3>You Scored <span> '+Scored+'</span>out of <span>'+total+'</span></h3>';
alert("You Score" +score+" out of "+total);
return false;
}




I am trying to code an online quiz game
Re: I Want To Learn Programming. Which Language Should I Start With? by Nobody: 2:54pm On Nov 05, 2018
I have done it, my people. I am very happy
Thank you.
Re: I Want To Learn Programming. Which Language Should I Start With? by KronicMorris(m): 3:09pm On Nov 05, 2018
dgee1:


Thank you very much for the advice. I use my Laptop but as I said I'm still a rookie and just learning.


Start with Python to get the paradigms and basics of Programming. If you need something to work with, learn Flask, it's both simple and highly demanded of Programmers.
People usually complain about not understanding, same with me, but the only way to enjoy it is to make something with it while learning at the same time.

And Python which is object-oriented would teach you a tad much about programming, Flask would make it fairly easy if you go into web-design + web-server management/backend management

1 Like

Re: I Want To Learn Programming. Which Language Should I Start With? by dgee1(m): 4:54pm On Nov 05, 2018
KronicMorris:


Start with Python to get the paradigms and basics of Programming. If you need something to work with, learn Flask, it's both simple and highly demanded of Programmers.
People usually complain about not understanding, same with me, but the only way to enjoy it is to make something with it while learning at the same time.

And Python which is object-oriented would teach you a tad much about programming, Flask would make it fairly easy if you go into web-design + web-server management/backend management

Oh OK. Thanks so much, bro. You feel HTML and CSS isnt a cool starting point and do you have you any resources on Python I can use?
Re: I Want To Learn Programming. Which Language Should I Start With? by jelel6: 8:42am On Nov 07, 2018
kennedythacode:
For all your Udemy free courses, download this app to download them at a go.....this will be extremely helpful for all those willing to learn programming. https://play.google.com/store/apps/details?id=com.atornel.tutemy


Thanks for sharing this. Very helpful.

I've already started downloading one of the courses in fact. I'm using Bittorrent. The only probably is, it is very slow. Is that how it is or the torrent is the problem. If I can possibly download it faster, I would very much appreciate it.

1 Like

Re: I Want To Learn Programming. Which Language Should I Start With? by ravivc: 11:09am On Nov 07, 2018
I found a new free course of Java - Codegym. Learning is interactive, interesting and understandable for beginners. https://codegym.cc/quests Also there is a large community of students who can help you!
Re: I Want To Learn Programming. Which Language Should I Start With? by honingds: 10:54am On Nov 11, 2018
You can start with learning Python , it is the easiest of all programming languages. Learning Python will help you to go into any field in IT, be it DevOps scripting , Big Data development using PySpark or Data Scientist.
I can help you with learning Python in my data science online course
Re: I Want To Learn Programming. Which Language Should I Start With? by misaacdelight(m): 2:43pm On Nov 12, 2018
weldone brother but learning programing in the university and to learn it online which one is more helpful, again which school programing in nigeria,
2. what is the different btw computer science and programing language.
Re: I Want To Learn Programming. Which Language Should I Start With? by Softhands(m): 9:18pm On Nov 12, 2018
From what I know now, Start with Python, then C++ and the move to JavaScript... Big companies will be running after you in no time.
Re: I Want To Learn Programming. Which Language Should I Start With? by Johnmattee(m): 1:08pm On Nov 13, 2018
Does web development really worth it? It take years to be proficient in web development/design, even software development. And for someone diving into this from another field other than computer science might have issue with employment because most of the ICT firms require a degree in computer science and reasonable years of working experience. For a graduate like me who wants to learn a skill that won't take a long time to master. Is there any hope or any other suggestion from you is welcomed.
Thank you.
Re: I Want To Learn Programming. Which Language Should I Start With? by sureshdasari: 9:37am On Nov 17, 2018
Re: I Want To Learn Programming. Which Language Should I Start With? by DutchNegro(m): 9:25pm On Nov 19, 2018
Good evening great people, who knows this IT training institute called IIHT.. How efficient are they? Their JAVA PROGRAMMING LANGUAGE training duration is 3months scheduled for 9am - 12am or 1pm - 5pm on Mondays, Wednesdays, and Fridays while weekend program runs from 10am - 3pm.. pls, let the experts evaluate this for me o. Can I really learn PROGRAMMING LANGUAGE within this time frame?

Thank you for your contributions.
Re: I Want To Learn Programming. Which Language Should I Start With? by Nobody: 12:04pm On Nov 20, 2018
If u can stay on the computer for long hours to learn then u already 90% of your success in programming
Re: I Want To Learn Programming. Which Language Should I Start With? by coursesblog: 5:28pm On Nov 20, 2018
if u Wana Learn Development of any language or be smart in this field must learn first free from here.
[url] https://coursesblog.com/web-development/ Download Udemy Courses[/url]
https://coursesblog.com/web-development/
Re: I Want To Learn Programming. Which Language Should I Start With? by cliqtips: 10:23pm On Nov 20, 2018
I keep getting this error message "Gradle project syn failed...


I really need help on this Android studio, I kept getting this error Gradle project syn failed......

I've watched videos about this error message on Youtube
Ive googled and also checked Quora forum and stackoverflow, none of those solutions given there worked for me.

It's really frustration now. I've been on this over a month since 18th of Oct, 2018.

Please someone should help me on this.

Thank you in advance.

Best regards.

(1) (2) (3) ... (97) (98) (99) (100) (101) (102) (103) ... (165) (Reply)

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