TIU Quiz-10

TIU Quiz-10

University

10 Qs

quiz-placeholder

Similar activities

Servlets & JSP

Servlets & JSP

University

10 Qs

cp06-01-1D-Array

cp06-01-1D-Array

University

10 Qs

ER MODEL

ER MODEL

University

15 Qs

Kuis Dadakan ;)

Kuis Dadakan ;)

10th Grade - University

15 Qs

Topic 4-2: Multiple if-else and switch-case

Topic 4-2: Multiple if-else and switch-case

University

10 Qs

1-基本数据类型

1-基本数据类型

University

10 Qs

Listen in Python

Listen in Python

University

10 Qs

Chap 1: What is a program made of?

Chap 1: What is a program made of?

University

13 Qs

TIU Quiz-10

TIU Quiz-10

Assessment

Quiz

Computers

University

Hard

Created by

Rahul Mahato

Used 5+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to connect to an SQLite3 database in Python?

db = sqlite3.connect('database_name')

db = sqlite3.connection('database_name')

db = sqlite3.Connection('database_name')

db = sqlite3.database('database_name')

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method is used to commit changes to the database in SQLite3?

db.update()

db.commit()

db.execute()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you create a new table named students with columns id, name, and age?

cursor.execute("CREATE TABLE students (id INT, name TEXT, age INT)")

cursor.execute("NEW TABLE students (id INT, name TEXT, age INT)")

cursor.execute("CREATE students (id INT, name TEXT, age INT)")

cursor.execute("TABLE students (id INT, name TEXT, age INT)")

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is method overriding in OOP?

Defining a method with the same name but different parameters in the same class

Defining a method with the same name and parameters in a derived class

Using multiple methods with different names

Redefining a method with different parameters in the same class

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement about class and object is incorrect?

A class is a blueprint for objects.

An object is an instance of a class.

Classes can have attributes and methods.

Objects can inherit classes.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create an instance of a class named Car?

Car = new Car()

my_car = Car()

my_car = Car.create()

Car my_car = Car()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the init method in a Python class?

To initialize a class attribute

To initialize an instance of a class

To define a class method

To delete an instance of a class

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?