QuestionQ1
701.1 Modern Software DevelopmentWhich of the following data structures represents a JSON array?
- A {"data":<one=1><two=2>}
- B {"data":"one", "two"}
- C {"data":"1";"data":+"2"}
- D {data:{one:1,two:2}}
- E {"data":["one","two"]}
QuestionQ2
701.2 Standard Components and Platforms for SoftwareA service provider operates infrastructure across various globally distributed locations and offers to deliver static files from those locations to clients that need to access the data. What type of service is this?
- A A message broker (MB)
- B A function as a service provider (FaaS)
- C A distributed database (SDSB)
- D A content delivery network (CDN)
- E An application runtime service (ARS)
Community Discussion
QuestionQ3
701.4 Continuous Integration and Continuous DeliveryWhat are the benefits of feature toggles?
- A Feature toggles decouple technical deployments from the official launch of a product.
- B Feature toggles reduce the build time by excluding unnecessary features from a build.
- C Feature toggles eliminate the need for feature branches in a source code management system (SCM) during development.
- D Feature toggles start microservices on demand when their functionality is requested.
- E Feature toggles can enable new features for advanced users before globally releasing them.
Community Discussion
QuestionQ4
701.3 Source Code ManagementAfter you create a new file in a directory that belongs to a Git repository, which commands must be used so Git manages the new file and uploads it to an already configured remote repository?
- A git init
- B git push
- C git commit
- D git add
- E git remote
Community Discussion
QuestionQ5
701.3 Source Code ManagementThe following output is produced by git branch:
development
main
production
* staging
How can every change from the development branch be integrated into the staging branch?
- A git stash development
- B git merge development
- C git branch --merge development
- D git merge development..staging
- E git cp --merge development .
Community Discussion
That's the end of the preview
It's free
100% of the questions are free for all users.
No strings attached.
Community Discussion