Computational Thinking and Programming-I Quiz 3
Topics- Knowledge of data types: Number(integer, floating point,complex), boolean, sequence(string, list, tuple), None, Mapping(dictionary), mutable and immutable data types.
Topics- Knowledge of data types: Number(integer, floating point,complex), boolean, sequence(string, list, tuple), None, Mapping(dictionary), mutable and immutable data types.
Topics- Familiarization with the basics of Python programming: Introduction to Python, Features of Python, executing a simple “hello world” program, execution modes: interactive mode and script mode, Python character set, Python tokens( keyword, identifier, literal, operator, punctuator), variables, concept of l-value and r-value, use of comments
Last updated on February 19th, 2024 at 10:50 pmDatabase concepts Quiz Class 12 Here’s a 15-question quiz based on the topics “Database Concepts: Introduction to Database Concepts and its Need” and “Relational Data Model: Relation, Attribute, Tuple, Domain, Degree, Cardinality, Keys (Candidate Key, Primary Key, Alternate Key, Foreign Key)”
Topics- Types of software: System software (Operating systems, system utilities, device drivers), programming tools and language translators ( assembler, compiler, and interpreter), application software
Last updated on June 20th, 2023 at 09:03 pmTopics-Strings: introduction, string operations (concatenation, repetition, membership and slicing), traversing a string using loops, built-in functions/methods–len(), capitalize(), title(), lower(), upper(), count(), find(), index(), endswith(), startswith(), isalnum(), isalpha(), isdigit(), islower(), isupper(), isspace(),lstrip(), rstrip(), strip(), replace(), join(), partition(), split()
Last updated on August 9th, 2023 at 12:40 pmTopics-Lists: introduction, indexing, list operations (concatenation, repetition, membership and slicing), traversing a list using loops, built-in functions/methods–len(), list(), append(), extend(), insert(), count(), index(), remove(), pop(), reverse(), sort(), sorted(), min(), max(), sum(); nested lists, suggested programs: finding the maximum, minimum, mean of numeric values stored in a list;…
Last updated on July 4th, 2024 at 07:54 amHere’s a 15-question “CSV File Quiz Class 12” based on the topics “CSV file: import csv module, open/close CSV file, write into a CSV file using writer(), writerow(), writerows() and read from a CSV file using reader(), Data Structure: Stack, operations on a stack (push & pop),…