5th sem r2 final

5th sem r2 final

University

25 Qs

quiz-placeholder

Similar activities

Database Design Quiz

Database Design Quiz

University

30 Qs

IS314_Quiz3

IS314_Quiz3

University

20 Qs

MB-4

MB-4

University

22 Qs

SQL BASICS

SQL BASICS

University

25 Qs

SQL Bootup24

SQL Bootup24

University

25 Qs

Chapter 4

Chapter 4

University

20 Qs

PhotoShop Test Review

PhotoShop Test Review

9th Grade - University

20 Qs

Data Collection and Analysis Quiz

Data Collection and Analysis Quiz

University

20 Qs

5th sem r2 final

5th sem r2 final

Assessment

Quiz

Computers

University

Hard

Created by

Gagan S K

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which SQL statement adds a UNIQUE constraint to a column email in the users table?

ALTER TABLE users ADD CONSTRAINT UNIQUE(email);

ALTER TABLE users ADD UNIQUE(email);

CREATE UNIQUE email ON users;

ADD CONSTRAINT UNIQUE TO users.email;

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

How do you filter rows where age is between 25 and 40 but exclude ages 30 and 35?

SELECT * FROM table WHERE age BETWEEN 25 AND 40 AND age NOT IN (30, 35);

SELECT * FROM table WHERE age BETWEEN 25 AND 40 OR age NOT BETWEEN 30 AND 35;

SELECT * FROM table WHERE age IN (25, 26, ... 40) EXCEPT (30, 35);

SELECT * FROM table WHERE age BETWEEN 25 AND 40 AND age IS NOT (30, 35);

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which method allocates IPs efficiently across a network with limited public IPs?

Subnetting

Network Address Translation (NAT)

Classful Addressing

Static IP Allocation

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which transport-layer protocol is best for real-time gaming to minimize delay?

TCP

UDP

ICMP

SCTP

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which query retrieves names of employees whose salaries are higher than the department average?

SELECT name FROM employees WHERE salary > (SELECT AVG(salary) FROM employees);

SELECT name FROM employees WHERE salary > AVG(salary) GROUP BY department;

SELECT name FROM employees WHERE salary > DEPT_AVG(salary);

SELECT name FROM employees WHERE salary > ALL (SELECT salary FROM employees);

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which feature of IPv4 allows splitting packets for smaller MTU links?

Address Aggregation

Subnetting

Fragmentation

Packet Switching

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How does CSMA/CA ensure collision avoidance?

By sending acknowledgment packets after data transmission

By broadcasting 'ready-to-send' and 'clear-to-send' signals

By detecting and delaying retransmissions upon collision

By allowing devices to take fixed transmission slots

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?