AWSUG VLC Flashcard!

AWSUG VLC Flashcard!

Assessment

Flashcard

Professional Development

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

8 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Why should we build a custom CLI?

Back

All of them are correct.

2.

FLASHCARD QUESTION

Front

Which one of the following is the BEST cloud provider? Alibaba, GCP, Azure, AWS

Back

AWS

3.

FLASHCARD QUESTION

Front

Which library are we using to create the CLI?

Back

Cobra

4.

FLASHCARD QUESTION

Front

Which elements are present in the Go language? Options: interfaces, pointers and classes, interfaces, pointers and structs, interfaces, goroutines and classes, goroutines, interfaces and pointers arithmetic

Back

interfaces, pointers and structs

5.

FLASHCARD QUESTION

Front

How can we execute one of our commands? Options: go run . , go run , go build && , go exec

Back

go run .

6.

FLASHCARD QUESTION

Front

What's the correct way to list an object inside a bucket in s3 using the aws go sdk? Options: result, err := c.client.ListObjectsV2(ctx, input), result, err := c.client.ListObjects(ctx, input), result, err := c.client.ListObjectsV2(ctx, &s3.ListObjectsV2Input{
Path: 'path'
}), result, err := c.client.Get(ctx, input)

Back

result, err := c.client.ListObjectsV2(ctx, input)

7.

FLASHCARD QUESTION

Front

How can we define flags in cobra?

Back

All of the above

8.

FLASHCARD QUESTION

Front

How to import a method named Foo from a module named cmd?

Back

import "cmd"; cmd.Foo()