Interview Questions and Answers for 'A' | Search Interview Question - javasearch.buggybread.com
Javasearch.buggybread.com

Search Interview Questions


 More than 3000 questions in repository.
 There are more than 900 unanswered questions.
Click here and help us by providing the answer.
 Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company      Label / Company / Text

   



Interview Questions and Answers - Order By Newest

   next 30
 Q2521. What is the default limit on number of EC2 instances in each region ?Amazon Web Services (AWS)
Ans. 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 ec


 Q2522. What is the scale of durability in Amazon S3?Amazon Web Services (AWS)
Ans. 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 s3


 Q2523. How will you upload a file greater than 100 megabytes in Amazon S3?Amazon Web Services (AWS)
Ans. 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 s3


 Q2524. Can we do Cross Region replication in Amazon S3 without enabling versioning on a bucket?Amazon Web Services (AWS)
Ans. 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


 Q2525. What are the different types of actions in Object Lifecycle Management in Amazon S3?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     aws s3  aws storage  amazon cloud storage  amazon s3


 Q2526. What is Geo Targeting in Amazon CloudFront?Amazon Web Services (AWS)
Ans. 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


 Q2527. What is AWS Snowball?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     


 Q2528. 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


 Q2529. 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


 Q2530. 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     


 Q2531. How is a WAF different from ip tables ?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     


 Q2532. 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


 Q2533. 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


 Q2534. 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


 Q2535. 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


 Q2536. 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


 Q2537. Difference between Datadriven and Hybrid Frame work?
 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


 Q2538. Difference between "extend" and "implement" in java?Core Java
 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


 Q2539. Difference between String constant and String non-constant pools?Core Java
 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


 Q2540. what are the different status of a defect in Jira ?Jira
Ans. Open, In Progress, Reopened, Closed, Resolved

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve          Asked in 1 Companies


 Q2541. How to work with dynamic webtable ?Testing
Ans. List lists=driver.FindElements(xpath);
int row= lists.size();

List lists=driver.FindElements(xpath);
int column= lists.size();

String value=Rowtable.FindElement(xpath);
system.out.println(value);

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     Selenium     Asked in 1 Companies


 Q2542. Design
 This question was recently asked at 'HeadStrong'.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


 Q2543. can we write multiple CATCH in webdriver code?Testing
Ans. A try block can be followed by one or more catch blocks. Each catch block must contain a different exception handler. So, if you have to perform different tasks at the occurrence of different exceptions, use java multi-catch block.

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     webdriver     Asked in 1 Companies


 Q2544. What is the relationship between instances and AMI ?Amazon Web Services (AWS)
Ans. AMI provides the templating for creation of instances. So a single image can be used to launch multiple instances.

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     aws ami  amazon ami


 Q2545. What is the best AWS AMI for Data Science ?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     aws ami  amazon ami


 Q2546. Which AMI did you use for launching your EC2 instances ?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     aws ami  amazon ami


 Q2547. How did you use Spring in your project ? Which Spring annotations have you used in your project ?Spring
Ans. @RequestMappping

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     spring  spring annotations     Asked in 1 Companies


 Q2548. Which was the first service launched by AWS ? Amazon Web Services (AWS)
Ans. Simple Queue Service ( SQS )

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     aws sqs


 Q2549. When was AWS launched ?Amazon Web Services (AWS)
Ans. 2006

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     


 Q2550. What are different compute services in AWS ?Amazon Web Services (AWS)
Ans. EC2, Lambda, EKS , ECR, ECS

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     


previous 30   next 30

Help us and Others Improve. Please let us know the questions asked in any of your previous interview.

Any input from you will be highly appreciated and It will unlock the application for 10 more requests.

Company Name:
Questions Asked: