Programmer Analyst Interviews

Programmer Analyst Interview Questions

As a programmer analyst, you’re being hired for your brain, so expect your brain to be put to the test with challenging analytical questions. Expect technical questions about writing software and also questions about general analytical and problem solving skills. Also, you ultimately need to be able to communicate results to the business leaders, so expect to be tested on your ability to present your findings in a concise and coherent way.

22,441 programmer analyst interview questions shared by candidates

What are data types? What is mutable and immutable? Write a small program to create a list or array and perform basic operations using two variable How would you secure an application from cyber attacks? What are the key measures to protect a system or network?
avatar

Programmer Analyst

Interviewed at Cognizant

3.6
Oct 14, 2025

What are data types? What is mutable and immutable? Write a small program to create a list or array and perform basic operations using two variable How would you secure an application from cyber attacks? What are the key measures to protect a system or network?

package com.interview; public class Threading { int counter; class Mythread extends Thread{ @Override public void run(){ for(int i=0; i < 10000; i++) counter++; System.out.println("run = " + counter); } } public static void main(String[] args) throws InterruptedException { // TODO Auto-generated method stub Threading a = new Threading(); Mythread t1 = a.new Mythread(); t1.start(); t1.join(); System.out.println("" + a.counter); } }
avatar

Java Programmer

Interviewed at Barclays

3.9
Jan 15, 2010

package com.interview; public class Threading { int counter; class Mythread extends Thread{ @Override public void run(){ for(int i=0; i < 10000; i++) counter++; System.out.println("run = " + counter); } } public static void main(String[] args) throws InterruptedException { // TODO Auto-generated method stub Threading a = new Threading(); Mythread t1 = a.new Mythread(); t1.start(); t1.join(); System.out.println("" + a.counter); } }

Viewing 1021 - 1030 interview questions

Glassdoor has 22,441 interview questions and reports from Programmer analyst interviews. Prepare for your interview. Get hired. Love your job.