by Pawan Arora | Mar 25, 2020 | BCA, BTech, CBSE, Computer Science, CS C++
Computer Science C++ – Write a function RevText() to read a text file “input.txt” and print only words (strings) starting with letter ‘i’ or ‘I’ in reverse order and rest of the words as it is. This problem is related to...
by Pawan Arora | Mar 23, 2020 | BCA, BTech, Computer Science, CS Python, Education
Is there a data type for handling dates in python? No. Python does not provides any special data type for handling dates in Python. But that does not mean, you can’t play with dates while programming in Python. In this post you will learn: What is Python module...
by Pawan Arora | Mar 22, 2020 | BCA, BTech, CBSE, Computer Science, CS Python, Informatics Practices
Based on CBSE Computer Science and Informatics Practices Syllabus – Solving Pattern questions using Python Patterns questions help you improve on logic around loops and repetitive tasks having some symmetry Almost all the languages support repetitive tasks by...
by Pawan Arora | Mar 16, 2020 | BCA, BTech, CBSE, Computer Science, CS C++
Stacks (LIFO) using Linked List (Self-referential Structure) In Board Exams for CBSE Class XII Computer Science using C++ they might ask a question to implement stacks using Linked Lists or Arrays. This tutorial describes how to implement Stacks using linked list. It...
by Pawan Arora | Mar 12, 2020 | CBSE, Computer Science, CS C++
Stacks using Arrays and Classes In CBSE Class XII Computer Science using C++ board exams a question might come using stacks of one of the following types: Stack implementation using Arrays (chances are less) Stack implementation using Arrays of Structure and Classes....