1

Computer Programmer Jobs in McAllen, TX (NOW HIRING)

We are looking for Software Engineers that want to help Citamed get to the next level. If working ... PLEASE USE A COMPUTER TO RUN THE PREVIOUS CODE SNIPPET TO ANSWER THE FOLLOWING QUESTIONS.

next page

Showing results 1-20

Computer Programmer information

See McAllen, TX salary details

$31.4K

$61.7K

$90.7K

How much do computer programmer jobs pay per year?

As of Jul 14, 2026, the average yearly pay for computer programmer in McAllen, TX is $61,727.00, according to ZipRecruiter salary data. Most workers in this role earn between $48,000.00 and $76,000.00 per year, depending on experience, location, and employer.

What are computer programmers?

Computer programmers are professionals who write, test, and maintain the code that allows software programs and applications to function. They translate designs and instructions created by software engineers or developers into logical sequences that computers can follow. Programmers use various programming languages, such as Python, Java, or C++, to create and troubleshoot software to ensure it runs smoothly. Their work is essential to the development of websites, apps, operating systems, and a wide range of digital tools.

What are the key skills and qualifications needed to thrive as a Computer Programmer, and why are they important?

To thrive as a Computer Programmer, you need strong proficiency in programming languages (such as Python, Java, or C++), problem-solving skills, and a relevant degree or equivalent experience. Familiarity with software development tools, version control systems like Git, and sometimes certifications in specific languages or frameworks are commonly required. Attention to detail, communication skills, and the ability to work both independently and collaboratively are standout soft skills in this field. These competencies ensure high-quality, efficient code development and effective teamwork in rapidly evolving technical environments.

What Does a Computer Programmer Do?

A computer programmer designs, tests, writes, debugs, and maintains the computer program code. The coding language is written for the computer to be able to comprehend it and take specific actions according to those commands. Computer programmers can work with existing code or create something entirely new. The objective of coding is to develop programs that act on specific controls and behaviors. Coders need to be able to work with specialized algorithms, logic, and app domain, as well. But the other key goal of a computer programmer is to design interfaces that regular non-technical users can easily understand and use.

What is the difference between Computer Programmer vs Software Developer?

AspectComputer ProgrammerSoftware Developer
CredentialsTypically requires a bachelor's degree in computer science or related fieldUsually requires a bachelor's degree, often with additional experience or certifications
Work EnvironmentOften works in coding, debugging, and maintaining softwareDesigns, develops, tests, and maintains software applications
Industry UsageCommonly employed in IT, software firms, and tech departmentsFound in a wide range of industries including tech, finance, healthcare

While both roles involve coding and software creation, Computer Programmers primarily focus on writing and debugging code based on specifications, whereas Software Developers are involved in designing and building complete software solutions. The roles often overlap, but Developers typically have broader responsibilities in the software development lifecycle.

What are some typical challenges computer programmers face when working on large team projects?

Computer programmers working on large team projects often encounter challenges such as coordinating code changes, maintaining consistent coding standards, and managing dependencies between different components. Effective communication and the use of version control systems like Git are essential to prevent conflicts and ensure smooth collaboration. Additionally, programmers must often adapt to varying coding styles and workflows, making flexibility and a collaborative mindset important for success in team environments.
What are the most commonly searched types of Computer Programmer jobs in McAllen, TX? The most popular types of Computer Programmer jobs in McAllen, TX are:
What are popular job titles related to Computer Programmer jobs in McAllen, TX? For Computer Programmer jobs in McAllen, TX, the most frequently searched job titles are:
What job categories do people searching Computer Programmer jobs in McAllen, TX look for? The top searched job categories for Computer Programmer jobs in McAllen, TX are:
What cities near McAllen, TX are hiring for Computer Programmer jobs? Cities near McAllen, TX with the most Computer Programmer job openings:

Software Engineer

Citamed

San Juan, TX • On-site, Remote

Full-time

Re-posted 13 days ago


Job description

We are looking for Software Engineers that want to help Citamed get to the next level. If working within a Tech Startup, with other professionals that will push you to the limit is what you are searching for... then this is for you!
At Citamed, we strive for excellency at all levels of our business and operations. We pride ourselves for the attention to detail and the quality of our work. Therefore, we are looking for people that:
  • Want to learn about everything... and keep learning... always!
  • Are proactive and dynamic, with good attitudes and like having fun with coding and technology.
  • Extremely passionate about technology, software, and quality.
  • Ability to research, investigate, and study profoundly new technologies and best practices.
  • Be able to manage priorities, constant changes, and new requirements while maintaining a high level of quality and attention to details, due dates, and deliverables.
  • Be organized and able to work under pressure when necessary.

We also have some requirements for the opening:
  • Should have at least 2-3 years of experience in software and applications architecture and development.
  • Fully bilingual (verbal and written).
  • Knowledge of two or more of the following programming languages/frameworks/infrastructure: Visual Basic, C#, MS-SQL, Javascript, Groovy (Java), ReactJS, Amazon Web Services.
  • Availability to work in San Juan and with remote working options
Applicant should also answer the following questions related to the next code snippet.
01> var printers = [];
02> for(var i=0; i<3; i++) {
03> printers[i] = function(){
04> myCoolPrinter(i);
05> };
06> }
07> for(i=0; i<3; i++) {
08> printers[i]();
09> }
10> for(var j=0; j<3; j++) {
11> printers[j]();
12> }
13> function myCoolPrinter(v1){
14> // this function will print "v1"
15> }
DO NOT USE A COMPUTER TO RUN THE CODE ABOVE - we will know :). THE FOLLOWING QUESTIONS SHOULD BE ANSWERED BY MIND.
  1. Briefly describe lines 1-6.
  2. Briefly describe lines 10-12.
  3. Suppose that the function myCoolPrinter will output parameter v1 to the console. What will be the output?

PLEASE USE A COMPUTER TO RUN THE PREVIOUS CODE SNIPPET TO ANSWER THE FOLLOWING QUESTIONS.
  1. Refactor function myCoolPrinter so that it outputs to the console (eg: use console.log). What is the output?
  2. Is the output different to the one in question #3, why?