Interview Questions and Answers - Order By Newest Ans. Salesforce is the cloud based #1 CRM (Customer Relationship Management) Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q2762. A customer has a website which is accessible over the Internet and he wants to secure the communication and decides to implement HTTPS instead of HTTP. He has configured EC2 instance behind an ELB. Where should you configure the SSL certificate? Amazon Web Services (AWS)
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   Q2763. With regards to VPC, what is the default maximum number of virtual private gateways allowed per region? Amazon Web Services (AWS)
Ans. 5 Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws vpc Q2764. What is elasticity in relation to Cloud infrastructure ? Cloud Computing
Ans. The power to scale computing resources up and down easily with minimal friction Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Amazon Web Service (AWS)  Google Cloud Platform (GCP) Ans. 10000 Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws cloudfront  amazon cloudfront Q2766. Which is the best approach that provides the lowest cost for Amazon elastic block store snapshots while giving you the ability to fully restore data? aws ebs
Ans. Maintain the most current snapshot; archive the original and increment to Amazon Glacier. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws ebs volume snapshot Q2767. Pascal Triangle Program
Ans. package snippet;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Pascal {
public static void main(String[] args) {
System.out.println(generatePascalTriangle(5));
}
static Map> generatePascalTriangle(int size) {
Map> triangle = new HashMap<>();
triangle.put(0, Arrays.asList(1));
triangle.put(1, Arrays.asList(1, 1));
for (int i = 2; i <= size; i ) {
List coeffListForI = new ArrayList<>();
List coeffListForI_1 = triangle.get(i - 1);
coeffListForI.add(1);
for (int j = 0; j <= coeffListForI_1.size() - 2; j ) {
coeffListForI.add(coeffListForI_1.get(j) coeffListForI_1.get(j 1));
}
coeffListForI.add(1);
triangle.put(i, coeffListForI);
}
return triangle;
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 8 Companies This question was recently asked at 'Unisys'.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 Q2769. Explain Spring mvc. Spring
This question was recently asked at 'Esoft Services'.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. So that it doesn't overwrite the existing file with the same name and maintain versioning of it. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  AWS S3 Q2771. Which IAM policy condition key should be used if you want to check whether the request was sent using SSL? Amazon Web Services (AWS)
Ans. AWS: secure transport Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws security  aws iam  amazon iamAns. Amazon SWF Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Ans. IPv4 and IPv6 Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Elastic Load Balance  AWS Load balancing  aws elb  amazon elbAns. Controller Service Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  AWS Controller Service  aws elb  amazon elb  aws load balancing  elastic load balancerAns. 20 Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  EC2  aws ec2  aws computing  amazon cloud computing  amazon ecAns. 99.999999999% Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws s3  aws storage  amazon cloud storage  amazon s3Ans. AWS now allows file upto 5GB in S3 Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws s3  aws storage  amazon cloud storage  amazon s3Ans. Yes Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws s3  aws storage  amazon cloud storage  amazon s3 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  aws s3  aws storage  amazon cloud storage  amazon s3Ans. Geo Targeting will the users country of origin and pass along with country code to you in the cloudFront viewer country header. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws cloudfront  amazon cloudfront 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   Q2782. What are the different types of load balancing options provided by Amazon Elastic Load Balancing (ELB)? Amazon Web Services (AWS)
Ans. Application load balancing
Network load balancing
Classic load balancing Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  aws elb  amazon elb Q2783. How can you handle JavaScript popup using selenium ? Selenium
Ans. Using javaexecutor Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Selenium  WebDriver Asked in 1 Companies Q2784. You have a webserver on an ec2 instance. Your instance can get to the internet, but nobody on the internet can get to your webserver. Describe how you would troubleshoot. Amazon Web Services (AWS)
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   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   Q2786. Can we serialize objects with only private variables in Java ? Core Java
Ans. It depends on how we are serializing. The Serialization API doesn't worry about private variables and convert it into binary representation.
If we are using a library to map it to JSON / XML using XML Mappers, it may create trouble. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  serialization Q2787. If you have to pull a sub string out of a string, which method would you use - using String methods or Pattern / Matcher ? Design
Ans. It depends on how complex it is and if in future it would need any sort opf debugging. It's not easy to debug code if it's making heavy use of shortcuts like Lambda , Patterns etc. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  pattern matching  String  design Q2788. What are the different types annotations used in TestNG? TestNG
This question was recently asked at 'VMWare'.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 Q2789. How do we achieve parallel execution in TestNG? TestNG
This question was recently asked at 'VMWare'.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 Q2790. How do we include and exclude the groups in the TestNG xml file? TestNG
This question was recently asked at 'VM Ware'.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