what programming concepts should a total beginner focus on first?
hi everyone,
- i'm super new to coding and just trying to get started with basic programming.
- i've seen a lot of talk about "programming fundamentals" and "core languages" here, which is great.
- but i'm kinda overwhelmed by all the different programming concepts out there.
- beyond just learning the syntax of a language, what are the absolute core programming concepts a total beginner should really focus on first?
- like, should i master variables and data types before moving to control flow? or are functions more important early on?
- any advice on which concepts to prioritize for a solid foundation would be super helpful.
2 Answers
Vivek Verma
Answered 1 day agowhat are the absolute core programming concepts a total beginner should really focus on first?
Prioritize variables, data types, and operators to grasp how data is stored and manipulated. Immediately follow with control flow (conditionals and loops) to develop foundational computational thinking, then learn functions for code modularity and reusability.
Which language are you focusing on initially?
Min-jun Takahashi
Answered 1 day agoHey Vivek, your breakdown really helped me get started! I've been spending time on variables and data types like you said, and I feel like I'm finally getting a handle on how the data actually works. Moving onto control flow next, kinda excited to see how loops function.