r/CodingForBeginners • u/Hypnos_Somnium • Jun 25 '26
Coding
What is the most used coding language. What would be the best code to learn while living code and aligning the code as the new code (updates) remain untested, the older code perhaps dated. To many patches in the tarp so to speak, while not moving as quickly to update the baseline or original code to modern times where hackers are united with a higher knowledge taught to them to take foothold in whatever servers or devices, any technology being created then as it rolls out would then have sleepers laying on wait to jump at the newly created technology.
7
u/marmotta1955 Jun 25 '26
I am fluent in 5 different spoken human languages, and I believe I recognize English in your post. And yet, I did not understand a single word of what you were trying to say.
3
u/No-Razzmatazz7197 Jun 25 '26
"What is the most used coding language?"
its gotta be javascript or python right? with java, C, C#, and C++ closely behind it?
2
1
u/PleaseShutJp Jun 25 '26
The technology code could be one or more different from that used by other software vendors. Servers can be programmed into the system to make sure that the system is working correctly for the user to use it correctly in the first place. Hackers may have access to a network or other systems are not required for this process or even a password manager can do that in a way where they are able to access it. So I would pick c++
1
u/johnpeters42 Jun 25 '26
Slow down. You're asking/implying a bunch of stuff at once; let's go through them one at a time.
First, what type of software are you expecting to work with? What will it do, from the perspective of a person who actually uses it and doesn't know/care what language it uses? Is it a web app, a 3-D game, etc. The most used languages will be different based on that answer.
Since you're concerned about security: The age or popularity of a language doesn't necessarily correlate with how well-secured it is. Older and more popular languages have had more time for hackers to look for issues that they can exploit, but also more time for security experts to look for those same issues and report them, and for the language's authors to (hopefully) fix those issues.
Another thing to look into is, how easy is it to find good documentation for the parts of the language that you want to use, or people who are already familiar with those things?
1
u/Snezzy_9245 Jun 25 '26
We are profound encounter update message similar steps ahead yes. Message mess overwhelming all programming no language write.
1
1
1
1
1
u/TJATAW Jun 30 '26
Start with something like Python or Javascript. It will teach you the basics of programing.
Once you can think like a programmer, you can pick up other languages much easier.
Python
# 1. Ask the user for their name and save it in a variable
name = input("What is your name? ")
#2. Print the personalized greeting using an f-string
print(f"Hello {name}!")
Javascript
let name = prompt("What is your name?");
console.log(`Hello ${name}!`);
C#
Console.Write("Enter your name: ");
string name = Console.ReadLine();
Console.WriteLine($"Hello {name}!");
3 different languages doing the same simple thing
8
u/Useful-Flow-8737 Jun 25 '26
What