Basic HR questions, nothing complicated.
Electrical Engineer Interview Questions
11,033 electrical engineer interview questions shared by candidates
Your high profile background; why do you want to leave the company? what's your interest?
What would your dream job be?
How much do you know about the PAX
What are you passionate about and what values would you bring to the role and the company at large?
Describe a time when you worked on a project or academic assignment where you showed flexibility in the way you approached the tasks
I know we invited you to apply to the position. But why are you applying?
What are your interests? What is the area of engineering you focused in?
1. Consider the following Transaction class: package com.personetics.entities; import java.util.Date; public class Transaction { String id; String accountId; Double amount; Date date; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getAccountId() { return accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } } Design a data structure that gets as input a collection of Transaction objects from the last 6 months and supports the following methods in runtime complexity of O(1): ? insert(Transaction transaction) ? Double getAvg() ? Returns the average amount of all transactions. ? List getTransactionsOfMonthForAccount(int month, String accountI
What are the causes of harmonics
Viewing 9251 - 9260 interview questions