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.
Ans. Job function provides a mechanism to bundle together all Policies that might be required to perform a particular job like Database Administrator , Billing Administrator etc and hence facilitates granting higher level permissions.
Help us improve. Please let us know the company, where you were asked this question :
Ans. effect means whether the effect of this Policy is to allow or deny, action means the type of action ( read , write ) and service, and resource is the resource where this should apply.
For example - If we want to have a Policy of providing read access on S3 ,
effect will be "allow"
action will be "s3:GetObject"
resource will be "arn:aws:s3:::examplebucket/*"
Help us improve. Please let us know the company, where you were asked this question :
Ans. A Region is a Geographical entity like US-East , US-West etc. Each Region may have multiple availability zones where each zone comprise of 1 or more Data Center located with each other.
Edge Locations are the sites that hosts cached content for faster delivery and for saving network traffic as they feed content from sites that are local or near to consumption.
Help us improve. Please let us know the company, where you were asked this question :
LikeDiscussCorrect / Improve  aws region  aws availability zone  aws edge location  region vs availabillity zone
This is the oldest and most popular region. All new features are rolled first in this region and hence they are first available there. The downside is that because of experimentation with new services, unavailability time is quite high.
Help us improve. Please let us know the company, where you were asked this question :
Ans. AMI is an Amazon Machine Image. It contains the configuration to enable to boot up an EC2 instance with said configuration whereas Cloud formation is a templating language that allows to describe how to build a VPC and also allows you to create AWS services
AMI is templating specific to instances whereas the scope of CloudFormation templating is much bigger. CloudFormation could use AMI for launching instances along with other services.
Help us improve. Please let us know the company, where you were asked this question :
LikeDiscussCorrect / Improve  aws cloud formation  aws ami  amazon ami  aws ami  amazon ami vs aws cloud formation
Q600. can we write multiple CATCH in webdriver code?
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 :