Programmer Analyst Interview Questions

25,419 programmer analyst interview questions shared by candidates

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

4
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); } }

Write a prime number finding program in a given range in C Write a program to filter the Alphabets from the miscellaneous data. Difference between left and right outer join. Some questions about my research paper.
avatar

Programmer Analyst Trainee

Interviewed at Cognizant

3.9
Jul 4, 2015

Write a prime number finding program in a given range in C Write a program to filter the Alphabets from the miscellaneous data. Difference between left and right outer join. Some questions about my research paper.

Viewing 1001 - 1010 interview questions

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