Designer Nick Chubarov & illustrator Marina Smiian

Rd Supekar Computer Science 11th Solutions: Pdf

To give you a flavor, here is a typical entry you would find inside the PDF:

Chapter: Programming in C++ (Control Structures)

Question: Write a program to print the Fibonacci series up to N terms. rd supekar computer science 11th solutions pdf

Solution by RD Supekar:

#include<iostream.h>
#include<conio.h>
void main()
int n, t1=0, t2=1, nextTerm;
    cout << "Enter number of terms: ";
    cin >> n;
    cout << "Fibonacci Series: ";
    for (int i=1; i<=n; ++i)
if(i == 1)  cout << t1 << " "; continue; 
        if(i == 2)  cout << t2 << " "; continue; 
        nextTerm = t1 + t2;
        t1 = t2;
        t2 = nextTerm;
        cout << nextTerm << " ";
getch();

Output (for n=5): Fibonacci Series: 0 1 1 2 3 To give you a flavor, here is a

This clarity is why students desire the PDF.


Read a question from the textbook. Write your answer on paper without looking at the PDF. Output (for n=5): Fibonacci Series: 0 1 1 2 3

Warning: Many websites claiming to offer free PDFs are spam, malware-ridden, or pirated copies. Here is a responsible roadmap.

RD Supekar is a renowned author and educator in the field of Computer Science education in India. His textbooks are prescribed by the Maharashtra State Bureau of Textbook Production and Curriculum Research (Balbharati) for the Higher Secondary Certificate (HSC) syllabus. Unlike generic reference books, Supekar’s work is known for:

For a student in Class 11, the textbook provides the theory, but the solutions PDF provides the "How" and "Why" behind every exercise.


No more flipping through pages to find a specific answer. The PDF is organized chapter by chapter, covering: