Software Engineer Intern Interview Questions

9,771 software engineer intern interview questions shared by candidates

What's the difference between C++ and Java. I said something about pointers and he wanted me to go more in depth. What is the difference between string builder and string buffer. He sent me a code and make suggestions: import java.math.BigDecimal; public class CashCalculatorBasic { public BigDecimal getCalculatedAvailableBalance(BigDecimal currentBalance, BigDecimal totalDebits, BigDecimal totalCredits) { BigDecimal result = currentBalance.subtract(totalDebits).add(totalCredits); System.out.println("The calculated result is " + result); return result; } public static void main(String[] args) { new CashCalculatorBasic().getCalculatedAvailableBalance( new BigDecimal("1250.00"), new BigDecimal("250.00"), new BigDecimal("500.00")); } }
avatar

Software Engineer Intern

Interviewed at eBay

3.9
Mar 9, 2014

What's the difference between C++ and Java. I said something about pointers and he wanted me to go more in depth. What is the difference between string builder and string buffer. He sent me a code and make suggestions: import java.math.BigDecimal; public class CashCalculatorBasic { public BigDecimal getCalculatedAvailableBalance(BigDecimal currentBalance, BigDecimal totalDebits, BigDecimal totalCredits) { BigDecimal result = currentBalance.subtract(totalDebits).add(totalCredits); System.out.println("The calculated result is " + result); return result; } public static void main(String[] args) { new CashCalculatorBasic().getCalculatedAvailableBalance( new BigDecimal("1250.00"), new BigDecimal("250.00"), new BigDecimal("500.00")); } }

Viewing 2361 - 2370 interview questions

Glassdoor has 9,771 interview questions and reports from Software engineer intern interviews. Prepare for your interview. Get hired. Love your job.