Can you introduce yourself bit.
Software Engineer Summer Intern Interview Questions
9,338 software engineer summer intern interview questions shared by candidates
Determine the output of the following Java code: class B { public static void main(String[] args) { int k = 55; try { System.out.println("In try block"); int t = k/55; } catch (ArithmeticException e) { System.out.println("In catch block"); System.out.println("Dividing by zero but caught"); } finally { System.out.println("Execution, whether an exception occurs or not"); } } }
How would you implement a pattern like the one below using your familiar programming language? * ** *** **** *****
Given an array with 10 digits, describe the data structure you would use to find the summation of these values.
In a many-to-many (m:m) relationship, such as students and subjects, how many tables are needed to map this relationship in a database?
Coding questions: Bubble sort, Insert a node between 2 given positions
Identify some Java Classes and order them in a good structure
Ask you how to implement a hash table, and an excel question.
Design a customer object, list out attributes.
What are the main cornerstones of object oriented programming? Explain each.
Viewing 9311 - 9320 interview questions