CBSE Question Bank for Class 12 Economics (030)
Last updated on May 28th, 2021 at 09:52 am
Question Bank for Class 12 Economics
Also Check : Another Subject’s Question Banks Below
>>>English Core
>>>Mathematics
>>>Chemistry
>>>Accountancy
Last updated on May 28th, 2021 at 09:52 am
>>>English Core
>>>Mathematics
>>>Chemistry
>>>Accountancy
Last updated on September 30th, 2022 at 10:41 pm2022-23 Informatics Practices Sample Paper Class 12 TIME: 3 /HOURS M.M.70 General Instructions: (1) This question paper contains five sections, Section A to E. (2) All questions are compulsory. (3) Section A have 18 questions carrying 01 mark each. (4) Section B has 07 Very Short…
Last updated on February 10th, 2022 at 09:29 amImplement a stack using list Python Program #Python Program to implement stack, Stack operation (PUSH, POP, DISPLAY) stack=[] choice=”y” while (choice==”y”): print(“1.Push”) print(“2.Pop”) print(“3.Show”) your_choice=int(input(“Enter your choice”)) if (your_choice==1): num=input(“Input any number”) stack.append(num) elif(your_choice==2): if (stack==[]): print(“Stack is empty”) else: print(“The deleted element is:”,stack.pop()) elif (your_choice==3):…
Last updated on June 12th, 2022 at 01:20 pmImportant Computer Network Class 12 Question Answer for Computer Science/ Informatics Practices Q 1- What is a Computer Network? Ans: A computer network is a set of interconnected computers sharing resources located on or provided by network nodes. Q. 2 Who is considered as the…
Last updated on January 16th, 2021 at 09:56 amCBSE Half Yearly Sample Paper 2020 Accountancy for class 12 Class- XII (Commerce) Subject: Accountancy Time: 3 Hrs. Maximum Marks: 80 Attempt all questions: Do all firms of business organisations prepare the P/L Appropriation A/c, give reason? 2 In the absence of any provision…
Last updated on February 19th, 2024 at 10:56 pmClass 12 Computer Science Quiz Unit I: Computational Thinking and Programming – 2 S.N. Topics Covered Quiz 1 Functions: Types of function (built-in functions, functions defined in module, user defined functions), creating user defined function, arguments and parameters, default parameters, positional parameters, function returning value(s), flow…
Data Structures Class 12 Notes DATA STRUCTURES A data structure defines a mechanism to store, organise and access data along with operations (processing) that can be efficiently performed on the data. A data structure is a group of data that have different data types which can be accessed as a unit . For example, string…