{"id":877,"date":"2025-01-15T13:26:11","date_gmt":"2025-01-15T13:26:11","guid":{"rendered":"https:\/\/itxperts.co.in\/blog\/?p=877"},"modified":"2025-01-15T13:26:12","modified_gmt":"2025-01-15T13:26:12","slug":"cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts","status":"publish","type":"post","link":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/","title":{"rendered":"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts)"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\"><strong>Python Questions<\/strong><\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Q:<\/strong> What are Python\u2019s key features?<br><strong>A:<\/strong> Python is interpreted, high-level, dynamically typed, and supports object-oriented programming.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the difference between a list and a tuple?<br><strong>A:<\/strong> Lists are mutable, whereas tuples are immutable.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you declare a variable in Python?<br><strong>A:<\/strong> Variables are declared when they are assigned a value, e.g., <code>x = 5<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain the use of the <code>range()<\/code> function.<br><strong>A:<\/strong> It generates a sequence of numbers. Example: <code>range(5)<\/code> creates [0, 1, 2, 3, 4].<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the difference between <code>is<\/code> and <code>==<\/code>?<br><strong>A:<\/strong> <code>is<\/code> checks identity, whereas <code>==<\/code> checks equality.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a Python dictionary?<br><strong>A:<\/strong> It is an unordered collection of key-value pairs.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the output of <code>print(2 ** 3)<\/code>?<br><strong>A:<\/strong> <code>8<\/code><\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain list comprehension.<br><strong>A:<\/strong> It provides a concise way to create lists. Example: <code>[x**2 for x in range(5)]<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How can you handle exceptions in Python?<br><strong>A:<\/strong> Using <code>try<\/code>, <code>except<\/code>, and <code>finally<\/code> blocks.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are Python\u2019s data types?<br><strong>A:<\/strong> Common types include <code>int<\/code>, <code>float<\/code>, <code>str<\/code>, <code>list<\/code>, <code>tuple<\/code>, <code>dict<\/code>, and <code>bool<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a Python module?<br><strong>A:<\/strong> A file containing Python code that can be imported.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are *args and **kwargs?<br><strong>A:<\/strong> <code>*args<\/code> passes variable-length positional arguments; <code>**kwargs<\/code> passes variable-length keyword arguments.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you define a function in Python?<br><strong>A:<\/strong> Using the <code>def<\/code> keyword, e.g., <code>def func_name():<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are lambda functions?<br><strong>A:<\/strong> Anonymous functions defined with the <code>lambda<\/code> keyword.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain the difference between <code>del<\/code> and <code>remove()<\/code> in lists.<br><strong>A:<\/strong> <code>del<\/code> removes an element by index, whereas <code>remove()<\/code> removes by value.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is recursion?<br><strong>A:<\/strong> A function calling itself directly or indirectly.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you read a file in Python?<br><strong>A:<\/strong> Using <code>open()<\/code> followed by <code>.read()<\/code> or <code>.readlines()<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the purpose of the <code>with<\/code> statement in file handling?<br><strong>A:<\/strong> It ensures proper cleanup of file resources.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you import a specific function from a module?<br><strong>A:<\/strong> Using <code>from module import function<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you concatenate strings in Python?<br><strong>A:<\/strong> Using the <code>+<\/code> operator or <code>join()<\/code> method.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>MySQL Questions<\/strong><\/h4>\n\n\n\n<ol start=\"21\" class=\"wp-block-list\">\n<li><strong>Q:<\/strong> What is SQL?<br><strong>A:<\/strong> SQL stands for Structured Query Language used to manage relational databases.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are primary keys?<br><strong>A:<\/strong> A column or set of columns uniquely identifying a row in a table.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the difference between <code>CHAR<\/code> and <code>VARCHAR<\/code>?<br><strong>A:<\/strong> <code>CHAR<\/code> is fixed-length, while <code>VARCHAR<\/code> is variable-length.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you fetch data from a table?<br><strong>A:<\/strong> Using the <code>SELECT<\/code> statement, e.g., <code>SELECT * FROM table_name;<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain the use of the <code>WHERE<\/code> clause.<br><strong>A:<\/strong> Filters rows based on a condition.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a foreign key?<br><strong>A:<\/strong> A key in one table referencing a primary key in another.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you add a column to an existing table?<br><strong>A:<\/strong> Using <code>ALTER TABLE table_name ADD column_name datatype;<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are joins in SQL?<br><strong>A:<\/strong> Joins combine rows from two or more tables based on a related column.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain the difference between <code>INNER JOIN<\/code> and <code>OUTER JOIN<\/code>.<br><strong>A:<\/strong> <code>INNER JOIN<\/code> returns matching rows; <code>OUTER JOIN<\/code> includes unmatched rows too.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you create a database?<br><strong>A:<\/strong> Using <code>CREATE DATABASE db_name;<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are constraints in SQL?<br><strong>A:<\/strong> Rules enforced on columns, like <code>NOT NULL<\/code>, <code>UNIQUE<\/code>, and <code>CHECK<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you delete a table?<br><strong>A:<\/strong> Using <code>DROP TABLE table_name;<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the use of <code>GROUP BY<\/code>?<br><strong>A:<\/strong> Groups rows sharing a property and performs aggregate calculations.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you sort results in SQL?<br><strong>A:<\/strong> Using <code>ORDER BY column_name ASC\/DESC;<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are aggregate functions?<br><strong>A:<\/strong> Functions like <code>SUM()<\/code>, <code>AVG()<\/code>, <code>COUNT()<\/code>, <code>MIN()<\/code>, and <code>MAX()<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain the <code>LIKE<\/code> operator.<br><strong>A:<\/strong> Used for pattern matching with <code>%<\/code> and <code>_<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the difference between <code>TRUNCATE<\/code> and <code>DELETE<\/code>?<br><strong>A:<\/strong> <code>TRUNCATE<\/code> removes all rows, <code>DELETE<\/code> can filter rows.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you back up a MySQL database?<br><strong>A:<\/strong> Using <code>mysqldump<\/code> utility.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is indexing in SQL?<br><strong>A:<\/strong> It improves query performance by reducing data retrieval time.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you count rows in a table?<br><strong>A:<\/strong> Using <code>SELECT COUNT(*) FROM table_name;<\/code>.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Networking Questions<\/strong><\/h4>\n\n\n\n<ol start=\"41\" class=\"wp-block-list\">\n<li><strong>Q:<\/strong> What is a computer network?<br><strong>A:<\/strong> A collection of interconnected devices sharing resources and information.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are the types of networks?<br><strong>A:<\/strong> LAN, MAN, WAN, PAN, and WLAN.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define IP address.<br><strong>A:<\/strong> A unique address identifying devices on a network.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the difference between IPv4 and IPv6?<br><strong>A:<\/strong> IPv4 uses 32-bit addresses; IPv6 uses 128-bit addresses.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a MAC address?<br><strong>A:<\/strong> A hardware address unique to a network interface.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are the layers of the OSI model?<br><strong>A:<\/strong> Physical, Data Link, Network, Transport, Session, Presentation, Application.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is DNS?<br><strong>A:<\/strong> Domain Name System maps domain names to IP addresses.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define HTTP and HTTPS.<br><strong>A:<\/strong> HTTP is unsecured; HTTPS uses SSL\/TLS for encryption.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the role of a router?<br><strong>A:<\/strong> Directs data packets between networks.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a firewall?<br><strong>A:<\/strong> A security system to monitor and control network traffic.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Societal Impacts Questions<\/strong><\/h4>\n\n\n\n<ol start=\"51\" class=\"wp-block-list\">\n<li><strong>Q:<\/strong> What is digital divide?<br><strong>A:<\/strong> The gap between those with and without access to technology.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are the ethical concerns in AI?<br><strong>A:<\/strong> Bias, job displacement, privacy, and accountability.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How can social media impact mental health?<br><strong>A:<\/strong> It can lead to anxiety, depression, and self-esteem issues.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are the benefits of e-governance?<br><strong>A:<\/strong> Transparency, efficiency, and accessibility of government services.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain phishing.<br><strong>A:<\/strong> Fraudulent attempts to obtain sensitive information via fake emails or websites.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is cyberbullying?<br><strong>A:<\/strong> Bullying through digital platforms like social media.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define intellectual property rights (IPR).<br><strong>A:<\/strong> Legal rights protecting creators&#8217; works.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is net neutrality?<br><strong>A:<\/strong> The principle that ISPs must treat all data equally.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the impact of e-waste?<br><strong>A:<\/strong> Pollution, health hazards, and resource depletion.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How can technology reduce carbon footprints?<br><strong>A:<\/strong> Through energy-efficient devices and renewable energy technologies.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Additional Questions<\/strong><\/h4>\n\n\n\n<ol start=\"61\" class=\"wp-block-list\">\n<li><strong>Q:<\/strong> What is the difference between <code>sort()<\/code> and <code>sorted()<\/code> in Python?<br><strong>A:<\/strong> <code>sort()<\/code> modifies the list in place, while <code>sorted()<\/code> returns a new sorted list.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you create a virtual environment in Python?<br><strong>A:<\/strong> Using <code>venv<\/code>, e.g., <code>python -m venv env_name<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the use of <code>super()<\/code> in Python?<br><strong>A:<\/strong> It is used to call a method from a parent class.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the purpose of the <code>zip()<\/code> function in Python?<br><strong>A:<\/strong> It combines two or more iterables into tuples.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How do you create a view in MySQL?<br><strong>A:<\/strong> Using <code>CREATE VIEW view_name AS SELECT ...<\/code>.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a self-join in SQL?<br><strong>A:<\/strong> A table joining with itself.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is subnetting in networking?<br><strong>A:<\/strong> Dividing a network into smaller subnetworks.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is an IP conflict?<br><strong>A:<\/strong> When two devices have the same IP address on a network.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain the concept of port numbers.<br><strong>A:<\/strong> Port numbers identify specific processes or services on a network.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a proxy server?<br><strong>A:<\/strong> It acts as an intermediary between a client and the internet.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are cookies in web technology?<br><strong>A:<\/strong> Small data files stored on a user\u2019s device by websites.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the difference between symmetric and asymmetric encryption?<br><strong>A:<\/strong> Symmetric uses one key for encryption and decryption; asymmetric uses a key pair.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define data encapsulation in networking.<br><strong>A:<\/strong> Wrapping data with protocol information at each layer of the OSI model.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the purpose of a gateway in a network?<br><strong>A:<\/strong> It connects different networks and translates protocols.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How does two-factor authentication work?<br><strong>A:<\/strong> It combines two verification methods, like a password and an OTP.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the purpose of a data dictionary in a database?<br><strong>A:<\/strong> It stores metadata about the database structure.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is an ER diagram?<br><strong>A:<\/strong> A visual representation of entities and relationships in a database.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the difference between <code>HAVING<\/code> and <code>WHERE<\/code> in SQL?<br><strong>A:<\/strong> <code>HAVING<\/code> filters grouped data; <code>WHERE<\/code> filters rows before grouping.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is latency in networking?<br><strong>A:<\/strong> The delay in data transfer from source to destination.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the importance of green computing?<br><strong>A:<\/strong> Reducing energy consumption and environmental impact of computing.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define multitasking in operating systems.<br><strong>A:<\/strong> Running multiple processes simultaneously.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is steganography?<br><strong>A:<\/strong> Hiding data within other non-secret files or data.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Explain phishing attacks in cybersecurity.<br><strong>A:<\/strong> Fraudulent attempts to steal sensitive information through fake communications.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the purpose of MySQL\u2019s <code>LIMIT<\/code> clause?<br><strong>A:<\/strong> Restricts the number of rows returned by a query.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is a loopback address?<br><strong>A:<\/strong> An IP address (127.0.0.1) used for testing the local machine.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define bandwidth in networking.<br><strong>A:<\/strong> The maximum data transfer rate of a network.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the function of the ARP protocol?<br><strong>A:<\/strong> Resolves IP addresses to MAC addresses.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are the risks of open Wi-Fi networks?<br><strong>A:<\/strong> Data theft, man-in-the-middle attacks, and unauthorized access.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is SQL injection?<br><strong>A:<\/strong> A code injection attack exploiting database vulnerabilities.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How does SSL\/TLS secure data transmission?<br><strong>A:<\/strong> By encrypting data between a client and server.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is cloud computing?<br><strong>A:<\/strong> Delivery of computing services over the internet.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define biometrics in security.<br><strong>A:<\/strong> Authentication using physical traits like fingerprints or retina scans.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the function of a packet sniffer?<br><strong>A:<\/strong> Captures and analyzes network traffic.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How does a VPN work?<br><strong>A:<\/strong> Creates a secure, encrypted connection over a public network.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is ransomware?<br><strong>A:<\/strong> Malicious software that encrypts data until a ransom is paid.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What are ethical hacking and penetration testing?<br><strong>A:<\/strong> Practices to identify and fix security vulnerabilities.<\/li>\n\n\n\n<li><strong>Q:<\/strong> Define digital signature.<br><strong>A:<\/strong> Electronic signature ensuring the authenticity of a message or document.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is hashing in cryptography?<br><strong>A:<\/strong> Converting data into a fixed-size string, often used for verification.<\/li>\n\n\n\n<li><strong>Q:<\/strong> What is the Internet of Things (IoT)?<br><strong>A:<\/strong> A network of interconnected devices that communicate over the internet.<\/li>\n\n\n\n<li><strong>Q:<\/strong> How can individuals ensure online privacy?<br><strong>A:<\/strong> By using strong passwords, enabling encryption, and avoiding suspicious links.<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Python Questions MySQL Questions Networking Questions Societal Impacts Questions Additional Questions<\/p>\n","protected":false},"author":1,"featured_media":878,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"googlesitekit_rrm_CAow44u0DA:productID":"","footnotes":""},"categories":[169],"tags":[],"class_list":["post-877","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-viva"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts) - Itxperts<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts) - Itxperts\" \/>\n<meta property=\"og:description\" content=\"Python Questions MySQL Questions Networking Questions Societal Impacts Questions Additional Questions\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/\" \/>\n<meta property=\"og:site_name\" content=\"Itxperts\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/itxperts.co.in\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-15T13:26:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-15T13:26:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1792\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"@mritxperts\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"@mritxperts\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/\"},\"author\":{\"name\":\"@mritxperts\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6\"},\"headline\":\"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts)\",\"datePublished\":\"2025-01-15T13:26:11+00:00\",\"dateModified\":\"2025-01-15T13:26:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/\"},\"wordCount\":1553,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp\",\"articleSection\":[\"Viva\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/\",\"url\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/\",\"name\":\"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts) - Itxperts\",\"isPartOf\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp\",\"datePublished\":\"2025-01-15T13:26:11+00:00\",\"dateModified\":\"2025-01-15T13:26:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage\",\"url\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp\",\"contentUrl\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp\",\"width\":1792,\"height\":1024,\"caption\":\"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/itxperts.co.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#website\",\"url\":\"https:\/\/itxperts.co.in\/blog\/\",\"name\":\"Itxperts\",\"description\":\"Leading Website Design Company in Madhya Pradesh\",\"publisher\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#organization\"},\"alternateName\":\"Itxperts | Website Development in Madhya Pradesh\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/itxperts.co.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#organization\",\"name\":\"Itxperts\",\"alternateName\":\"Leading Website Design Company in Madhya Pradesh \u2013 Itxperts\",\"url\":\"https:\/\/itxperts.co.in\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png\",\"contentUrl\":\"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png\",\"width\":512,\"height\":512,\"caption\":\"Itxperts\"},\"image\":{\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/itxperts.co.in\",\"https:\/\/www.linkedin.com\/company\/itxpertsshivpuri\/\",\"https:\/\/www.instagram.com\/itxperts.co.in\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6\",\"name\":\"@mritxperts\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g\",\"caption\":\"@mritxperts\"},\"description\":\"I am a full-stack web developer from India with over 8 years of experience in building dynamic and responsive web solutions. Specializing in both front-end and back-end development, I have a passion for creating seamless digital experiences. When I'm not coding, I enjoy sharing insights and tutorials on the latest web technologies, helping fellow developers stay ahead in the ever-evolving tech landscape.\",\"sameAs\":[\"https:\/\/itxperts.co.in\/blog\"],\"url\":\"https:\/\/itxperts.co.in\/blog\/author\/mritxpertsgmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts) - Itxperts","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/","og_locale":"en_US","og_type":"article","og_title":"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts) - Itxperts","og_description":"Python Questions MySQL Questions Networking Questions Societal Impacts Questions Additional Questions","og_url":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/","og_site_name":"Itxperts","article_publisher":"https:\/\/www.facebook.com\/itxperts.co.in","article_published_time":"2025-01-15T13:26:11+00:00","article_modified_time":"2025-01-15T13:26:12+00:00","og_image":[{"width":1792,"height":1024,"url":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp","type":"image\/webp"}],"author":"@mritxperts","twitter_card":"summary_large_image","twitter_misc":{"Written by":"@mritxperts","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#article","isPartOf":{"@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/"},"author":{"name":"@mritxperts","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6"},"headline":"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts)","datePublished":"2025-01-15T13:26:11+00:00","dateModified":"2025-01-15T13:26:12+00:00","mainEntityOfPage":{"@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/"},"wordCount":1553,"commentCount":0,"publisher":{"@id":"https:\/\/itxperts.co.in\/blog\/#organization"},"image":{"@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage"},"thumbnailUrl":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp","articleSection":["Viva"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/","url":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/","name":"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts) - Itxperts","isPartOf":{"@id":"https:\/\/itxperts.co.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage"},"image":{"@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage"},"thumbnailUrl":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp","datePublished":"2025-01-15T13:26:11+00:00","dateModified":"2025-01-15T13:26:12+00:00","breadcrumb":{"@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#primaryimage","url":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp","contentUrl":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/01\/ip-viva-1.webp","width":1792,"height":1024,"caption":"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts)"},{"@type":"BreadcrumbList","@id":"https:\/\/itxperts.co.in\/blog\/cbse-class-12th-ip-cs-viva-questions-and-answers-python-mysql-networking-societal-impacts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itxperts.co.in\/blog\/"},{"@type":"ListItem","position":2,"name":"CBSE Class 12th IP\/CS Viva Questions and Answers (Python, MySQL, Networking, Societal Impacts)"}]},{"@type":"WebSite","@id":"https:\/\/itxperts.co.in\/blog\/#website","url":"https:\/\/itxperts.co.in\/blog\/","name":"Itxperts","description":"Leading Website Design Company in Madhya Pradesh","publisher":{"@id":"https:\/\/itxperts.co.in\/blog\/#organization"},"alternateName":"Itxperts | Website Development in Madhya Pradesh","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itxperts.co.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/itxperts.co.in\/blog\/#organization","name":"Itxperts","alternateName":"Leading Website Design Company in Madhya Pradesh \u2013 Itxperts","url":"https:\/\/itxperts.co.in\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png","contentUrl":"https:\/\/itxperts.co.in\/blog\/wp-content\/uploads\/2025\/05\/cropped-itxperts_logo.png","width":512,"height":512,"caption":"Itxperts"},"image":{"@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/itxperts.co.in","https:\/\/www.linkedin.com\/company\/itxpertsshivpuri\/","https:\/\/www.instagram.com\/itxperts.co.in\/"]},{"@type":"Person","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/77ad4d47f9f82583ee23e37010a52fc6","name":"@mritxperts","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itxperts.co.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/702cffafd84d85872c0d42d33a9fa39140418d7c60a1311a1f8f55b005d0570b?s=96&d=mm&r=g","caption":"@mritxperts"},"description":"I am a full-stack web developer from India with over 8 years of experience in building dynamic and responsive web solutions. Specializing in both front-end and back-end development, I have a passion for creating seamless digital experiences. When I'm not coding, I enjoy sharing insights and tutorials on the latest web technologies, helping fellow developers stay ahead in the ever-evolving tech landscape.","sameAs":["https:\/\/itxperts.co.in\/blog"],"url":"https:\/\/itxperts.co.in\/blog\/author\/mritxpertsgmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts\/877","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/comments?post=877"}],"version-history":[{"count":1,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts\/877\/revisions"}],"predecessor-version":[{"id":879,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/posts\/877\/revisions\/879"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/media\/878"}],"wp:attachment":[{"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/media?parent=877"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/categories?post=877"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itxperts.co.in\/blog\/wp-json\/wp\/v2\/tags?post=877"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}