Write an application that maps out a large set of data in as little time as possible.
Technical Programme Management Interview Questions
20,416 technical programme management interview questions shared by candidates
what are u doing now
Mostly technical questions about the role (reasoning and theory )
Asked on Oops concepts in Java and, python dictionary related questions, Also "single sign on", etc
What is your strength and weakness
Why are you interested in this position?
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?
add two numbers without using + operator
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); } }
Difference between Abstract and Interface and their real time examples. (Freshers)
Viewing 1051 - 1060 interview questions