Font size
WorksheetsQuiz on Visual Studio Code and SQL
Total questions: 19
Worksheet time: 47mins
What is the main purpose of an IDE such as Visual Studio Code? Cili është qëllimi kryesor i një IDE-je si Visual Studio Code?
To store databases / Për të ruajtur databaza
To run only compiled programs / Për të ekzekutuar vetëm programe të kompiluar
To help developers write, run, debug, and manage code / Për të ndihmuar zhvilluesit të shkruajnë, debug-ojnë dhe menaxhojnë kodin
To replace programming languages / Për të zëvendësuar gjuhët programuese
Which VS Code feature allows you to pause execution and inspect variables? Cila veçori e VS Code lejon ndalimin e ekzekutimit dhe inspektimin e variablave?
Terminal
Breakpoints
Extensions
File Explorer
In worksheet analysis, what represents inputs? Në analizën e worksheet-it, çfarë përfaqëson input-in?
If–else rules/rregullat
Calculations/kalkulimet
User-provided values/vlerat e dhëna nga përdoruesi
Printed output/rezultati i printuar
Which Python construct is used to make decisions? Cili konstrukt i Python përdoret për vendimmarrje?
for
def
if/elif/else
What type of database is SQLite? Çfarë lloji databaze është SQLite?
Cloud-only
Server-based
File-based lightweight
Spreadsheet editor
Name two advantages of using Visual Studio Code. Përmendni dy përparësi të përdorimit të Visual Studio Code
Explain what worksheet analysis means. Shpjegoni çfarë nënkupton analiza e worksheet-it.
Write Python + SQL query that would select all students with higher grade than 80? Shkruaj një query përmes Python që selekton të gjithë nxënësit me pikë më të madhe se 80
Which SQL command retrieves data from a database? Cila komandë SQL përdoret për të marrë të dhëna nga databaza?
INSERT
UPDATE
DELETE
SELECT
What type of testing focuses on individual functions or modules? Cili lloj testimi fokusohet në funksione ose module individuale?
Integration |Testing
Functional Testing
Unit Testing
Boundary Testing
Boundary testing focuses on: / Boundary testing fokusohet në:
Valid Inputs only
Extreme or limit values/ Vlerat në limite ose ekstreme
User interface design/Dizajnin e ndërfaqes së përdoruesit
Database performance/Performancën e databazës
Write a Python + SQL query that would insert a student named Arta with grade 92 into table named "studentat"./ Shkruaj një Python + SQL query që do të shtonte një studente me emrin Arta dhe 92 pikë në tabelën "studentat"
Which error occurs when code runs but produces wrong results?/ Cili gabim ndodh kur kodi ekzekutohet por jep rezultate të pasakta?
Syntax error
Runtime error
Logic error
Import error
What is the purpose of integration testing?/ Cili është qëllimi i integration testing?
Describe one common cause of a runtime error in Python. / Përshkruani një shkak të zakonshëm të një runtime error në Python
Why should database connections be closed after use? Pse duhet të mbyllen lidhjet me databazën pas përdorimit?
Give one example of a test case for a program that accepts user input. /Jepni një shembull të një test case për një program që pranon input nga përdoruesi.
Explain why debugging is part of the testing process. /Shpjegoni pse debugging konsiderohet pjesë e procesit të testimit.
Write down a library that enables Python to communicate with databases. / Shkruani një librari që mundëson që Python të komunikojë me databaza.
