FC0-U61 Software Development Concepts • Complete Question Bank
Complete FC0-U61 Software Development Concepts question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit. ``` 10 PRINT "Enter your name:" 20 INPUT name$ 30 IF name$ = "" THEN GOTO 10 40 PRINT "Hello, " + name$ 50 END ```
Refer to the exhibit.
```json
{
"name": "WebServer",
"instances": 3,
"maxInstances": 5,
"autoScaling": {
"enabled": true,
"cpuThreshold": 80,
"scaleUpBy": 1
}
}
```Refer to the exhibit.
```
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::example-bucket"
},
{
"Effect": "Deny",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::example-bucket/*"
}
]
}
```Refer to the exhibit.
Error log:
ERROR: column "user_id" does not exist in "users"
LINE 2: SELECT user_id, first_name FROM users WHERE last_name = 'Smith';
^
HINT: Perhaps you meant to reference the column "id" or "username".Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Fast, no moving parts
Uses spinning platters
Volatile, temporary storage
Non-volatile, read-only
Drag a concept onto its matching description — or click a concept then click the description.
Virtual machines and storage
Platform for app development
Software accessed via browser
Virtual desktop infrastructure
Refer to the exhibit.
```json
{
"effect": "Deny",
"action": "s3:DeleteObject",
"resource": "arn:aws:s3:::my-bucket/*",
"condition": {
"IpAddress": {
"aws:SourceIp": "192.0.2.0/24"
}
}
}
```Refer to the exhibit. ``` Error: NullReferenceException at line 45 in Calculate.cs ```
Given the following pseudocode that calculates the average of a list of numbers, which error will occur?
SET total = 0 SET count = 0 FOR EACH number IN list total = total + number count = count + 1 ENDFOR SET average = total / count OUTPUT average
Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::example-bucket/*"
},
{
"Effect": "Deny",
"Action": "s3:DeleteObject",
"Resource": "arn:aws:s3:::example-bucket/*"
}
]
}Refer to the exhibit. SET count = 1 WHILE count <= 5 OUTPUT count count = count + 1 ENDWHILE
Refer to the exhibit.
num = 1
while num < 5:
num = num + 1
print(num)