DCSMAT-DataStructures-Condititonal-iterative

DCSMAT-DataStructures-Condititonal-iterative

Professional Development

20 Qs

quiz-placeholder

Similar activities

Understanding BOM in JavaScript (11R)

Understanding BOM in JavaScript (11R)

Professional Development

15 Qs

Microsoft Intune - Pre-Assessment

Microsoft Intune - Pre-Assessment

Professional Development

20 Qs

LNCT T&P Test1

LNCT T&P Test1

Professional Development

20 Qs

CB-Quiz On AWS_IAM USER

CB-Quiz On AWS_IAM USER

Professional Development

20 Qs

Chapter 10: Incident Detection and Analysis

Chapter 10: Incident Detection and Analysis

Professional Development

20 Qs

Microsoft IT Pro Meetup - July

Microsoft IT Pro Meetup - July

Professional Development

15 Qs

IT Troubleshooting Quiz

IT Troubleshooting Quiz

Professional Development

21 Qs

DCSMAT-DataStructures-Condititonal-iterative

DCSMAT-DataStructures-Condititonal-iterative

Assessment

Quiz

Information Technology (IT)

Professional Development

Hard

Created by

ICT Academy of Kerala

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these commands adds a new item, "banana," to the end of the list fruits?

fruits.append("banana")

fruits.add("banana")

fruits.insert("banana")

fruits.push("banana")

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which conditional expression checks if total_sales is over $500?

total_sales == 500

total_sales < 500

total_sales > 500

total_sales != 500

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these commands removes the first item from the list 'vegetables'?

vegetables.remove(0)

vegetables.pop(0)

vegetables.delete(0)

vegetables.shift()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which conditional expression checks if 'username' is not empty?

username == ""

username != ""

username > ""

username < ""

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop type is most suitable for iterating through each item in a list of customer names?

while loop

for loop

if statement

switch statement

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the value of "price" in the dictionary product = {"name": "apple", "price": 1.5}?

product["price"]

product(price)

product->price

product.price

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which conditional expression correctly checks if a number x is even?

if x % 2 == 0:

if x % 2 != 0:

if x / 2 == 1:

if x * 2 == 0:

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?