by Pawan Arora | Apr 5, 2020 | CBSE, Computer Science, CS Python
Computer Science Python – Write a program to count number of characters in a given string This is a very simple program to start with. Python makes it more simple. Let us see what is expected from us, if the user enters the following string, let us say: Computer...
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...