Some DevOps Interview/Exam questions Archives - Anuj Varma, Hands-On Technology Architect, Clean Air Activist https://www.anujvarma.com/tag/some-devops-interviewexam-questions/ Production Grade Technical Solutions | Data Encryption and Public Cloud Expert Fri, 05 May 2017 16:15:26 +0000 en-US hourly 1 https://wordpress.org/?v=7.0.2 https://www.anujvarma.com/wp-content/uploads/anujtech.png Some DevOps Interview/Exam questions Archives - Anuj Varma, Hands-On Technology Architect, Clean Air Activist https://www.anujvarma.com/tag/some-devops-interviewexam-questions/ 32 32 Some DevOps Certification Level Questions https://www.anujvarma.com/some-devops-certification-level-questions/ https://www.anujvarma.com/some-devops-certification-level-questions/#respond Fri, 05 May 2017 16:13:00 +0000 http://www.anujvarma.com/?p=4696 1. Suppose you are to deploy 6 servers (EC2 Instances in AWS lingo) to run v1 of an app. Which of the following is a correct Ansible template that accomplishes […]

The post Some DevOps Certification Level Questions appeared first on Anuj Varma, Hands-On Technology Architect, Clean Air Activist.

]]>
1. Suppose you are to deploy 6 servers (EC2 Instances in AWS lingo) to run v1 of an app. Which of the following is a correct Ansible template that accomplishes this?

1. - template:
    count:6   src: config.ini.j2
    dest: /share/windows/config.ini
    newline_sequence: '\r\n'
2. – template:
count: 6
image: ami-v1
instance_type: t2.micro
3. - template:
    src: /mine/sudoers
    dest: /etc/sudoers
    validate: 'visudo -cf %s' 
    count:6
4. - template:
    src: etc/ssh/sshd_config.j2
    dest: /etc/ssh/sshd_config
    owner: root
    count: 6    group: root
    mode: '0600'
    validate: /usr/sbin/sshd -t -f %s
    backup: yes
Answer – 2)

2. Which of the following is NOT a characteristic of Memcached?

  1. Memcached is free and open source.
  2. Memcahed is a distributed memory object caching system. 
  3. The primary objective of Memcached is to enhance the response time for data that can otherwise be recovered or constructed from some other source or database. 
  4. Memcached provides security options around the key-value pairs that are cached.

4) is incorrect.

3. In AWS, Infrastructure is executed as code (IaC). Which of the following is NOT true of AWS IaC : 

  1. The code is written in simple JSON format
  2. The code is organized into files called templates and template groups called stacks. 
  3. The code has to be used in conjunction with the AWS CloudFormation Service.
  4. The code templates can be managed from the regular AWS Admin Console.

Answer 3) Does not have to use CloudFormation.

4. Which of the following does not logically belong under DevOps (choose all that apply)?

  1. Infrastructure as code
  2. Continuous deployment
  3. Automation
  4. Database Administration

Answer 4) – DBA

5. Application DevOps has a different set of core activities than Infrastructure DevOps. Which of the following activities is common between  Application DevOps and Infrastructure DevOps ?

  1. Provisioning
  2. Configuration
  3. Orchestration
  4. Deployment

Answer 4) – Only deployment is common

    Full answer –

    App DevOps Components

    • Code building
    • Code coverage
    • Unit testing
    • Packaging
    • Deployment

    Infrastructure DevOps Components

    • Provisioning
    • Configuration
    • Orchestration
    • Deployment

    The post Some DevOps Certification Level Questions appeared first on Anuj Varma, Hands-On Technology Architect, Clean Air Activist.

    ]]>
    https://www.anujvarma.com/some-devops-certification-level-questions/feed/ 0