Interview Questions and Answers - Order By Newest Ans. It needs to be done for NAT Instances , not NAT gateway. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws nat gateway  aws vpcAns. No Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws nat instance Q2323. Have you ever worked on continuations in Java ? Core Java
This question was recently asked at 'Overstock.com'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2324. Write a Program to print all nodes of the data structure ? Algorithm
This question was recently asked at 'Overstock.com'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  data structure  algorithm Asked in 1 Companies Q2325. Difference between composite , primary and unique key ? Database
This question was recently asked at 'Thomson reuters'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2326. Which programming language you hate the most and Why ? General
This question was recently asked at 'Thomson Reuters'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Ans. We are using Yaml for initializing configuration and Environment Variables for overriding them. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws lambda  aws serverless computing  amazon cloud serverless computing  amazon lambda Q2328. Which is a better way to keep environment specific configuration in AWS Lambda - Environment Variables or external service like S3 or RDS ? Amazon Web Services (AWS)
Ans. Possible Answer - Env variable or use parameter store Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws lambda  aws serverless computing  amazon cloud serverless computing  amazon lambdaAns. No Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws dynamodb  aws nosql database  amazon cloud nosql databaseAns. No Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws subset  aws internet gatewayAns. No. They are never inherited and therefore are not subject to hiding or overriding. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  constructor  final  final constructor Asked in 1 Companies Q2332. Can a constructor be declared static ? Why ? Core Java
Ans. No.
When we declare a method static, it means that "this belongs to class as whole and not particular instance". The whole purpose of constructor is to initialize a object and hence there is no sense having static constructor. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  constructor  static  static constructor Asked in 1 Companies Q2333. How can we take snapshots and track changes to environment variables in Elastic Beanstalk or Lambda ? Amazon Web Services (AWS)
Ans. We can use AWS Config Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws elastic beanstalk  amazon elastic beanstalk  aws lambda  aws serverless computing  amazon cloud serverless computing  amazon lambda Q2334. If you are asked to develop a financial system, how would you make sure that there are proper checks , balances and audits ? Solution
This question was recently asked at 'BzzAgent'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Design  Security Asked in 1 Companies Q2335. why is "".equals(str); safer than str.equals("")? Core Java
Ans. str.equals("") this statement will throw NullPointerException if str is null where as "".equals(str) works fine even if str is null Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  equals method Asked in 1 Companies Q2336. Can we have a final argument in a method ? What is the use of that if we do so ? Core Java
This question was recently asked at 'Webster Bank'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2337. What is a difference between JUnit 3 and 4 ? Junit
This question was recently asked at 'Conde Nast'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  testing  junit Asked in 1 Companies Q2338. What is the minimum number of tables required to perform a SQL join? Database
Ans. 1 , We can do self join
Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  sql join Asked in 1 Companies Q2339. Code an elevator simulator. Design
This question was recently asked at 'TrustArc'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies This question was recently asked at 'IBM India'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  queue  stack Asked in 1 Companies Q2341. How would you test a Twitter application ? Testing
This question was recently asked at 'Slalom'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  solution  testing Asked in 1 Companies Q2342. Write a calculator and find if a character appears more than n times ? Design
This question was recently asked at 'Mercury Systems'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2343. Can we keep application configuration at different places and what could be the consideration for choosing multiple places for doing so ? Design
Ans. Yes an application can have configuration stored at multiple places. Factors that could facilitate such a design could be
1. Type of config information - We may have a case to store confidential information differently than other regular config value
2. Environment - We may like to have a base config ( defined in application package ) and then a different override mechanism in different environments.
3. Centralization - Sometime some configs need to be shared across application and hence centralized.
4. Testing - Testing against config may not be possible in some enviornments in certain cases and hence additional config store might be kept for testing purpose only. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Design  Solution Q2344. Do you think it's a good practice to keep passwords in config files ? Solution
Ans. We can keep them in config as encrypted values. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q2345. How to write an iterator for an iterator of iterators? Core Java
Ans. CustomArrayList myarrayList = new CustomArrayList();
myarrayList.add("Value 1");
myarrayList.add("Value 2");
myarrayList.add("Value 3");
for (String string : myarrayList) {
System.out.println(string);
}
package sample.utils;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class CustomArrayList implements Iterable {
private ArrayList mylist = new ArrayList();
public void add(T t) {
this.mylist.add(t);
}
@Override
public Iterator iterator() {
return new CustomIterator(mylist);
}
class CustomIterator implements Iterator {
private int indexPosition = 0;
private List internalList;
public CustomIterator(List internalList) {
this.internalList = internalList;
}
@Override
public boolean hasNext() {
if (internalList.size() >= indexPosition 1) {
return true;
}
return false;
}
@Override
public E next() {
E val = internalList.get(indexPosition);
indexPosition ;
return val;
}
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  iterator Asked in 1 Companies Q2346. What are the disadvantages of binary search trees? Algorithm
This question was recently asked at 'ServiceNow'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  binary search tree Asked in 1 Companies Q2347. Please explain the architecture of our application through a diagram ? General
This question was recently asked at 'Alfresco Software,Ancestry'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 2 Companies Q2348. How many heaps will be there with 3 threads ? Core Java
Ans. All threads share a common heap.
Each thread has a private stack, which it can quickly add and remove items from. This makes stack based memory fast, but if you use too much stack memory, as occurs in infinite recursion, you will get a stack overflow. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  memory management  heap memory Asked in 1 Companies Q2349. What does 'variable hoisting' mean? JavaScript
Ans. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2350. Explain when you would decide to use open authentication ? Authentication
Ans. Google OAuth can be used when we want to grant the access of our google credentials to the service provider ( most likely a cloud-based mobile application) by using the option ' Login via Google' Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  open authentication Asked in 1 Companies