B.TechSemester 12024-25Programming For Problem SolvingBCS101

Programming For Problem Solving (BCS101) - AKTU Question Paper 2024-25

B.Tech · Semester 1 · Free PDF Download

This is the official AKTU Programming For Problem Solving Previous Year Question Paper for B.Tech Semester 1, academic session 2024-25. Published by Dr. A.P.J. Abdul Kalam Technical University (AKTU/UPTU), Lucknow. Free PDF download — no login required.

Course:B.Tech
Semester:Semester 1
Session:2024-25
University:AKTU / UPTU

Rate this paper

Questions Asked in 2024-25

Programming For Problem Solving (BCS101) — complete question paper · 70 marks · 3 Hours

Section AAttempt all questions in brief. 2 x 07 = 14
  • a
    Define Tokens and its use in Programming language
  • b
    Differentiate between low level language and high-level language
  • c
    Write the significance of Oper ators in Programming language
  • d
    Draw the structure of Nested if else statement
  • e
    Find the Output of below code:
    #include <stdio.h>
     int main()
    {
     int z = 1;
    while (z <= 5)
    {
    {
    z++; }
    printf("%d ", z);
     z++;
    }
    return 0;
    }
  • f
    Write the time complexity of Selection Sort
  • g
    Define Macros and its use in C Programming
Section BAttempt any three of the following: 07 x 3 = 21
  • a
    Define Obj file. Discuss the Compilation process step by ste p in C Programming
  • b
    Write a program to check the entered year is leap year or no t with conditional operator
  • c
    Write the importance of array. Write a program to find the s um of two numbers using array passing to function
  • d
    Discuss the use of searching and write the program to find t he number in an array using linear search
  • e
    Explain the use and importanc e of Linked list in Programming
Section CAttempt any one part of the following: 07 x 1 = 07
  • a
    Draw and discuss the architect ure of Digital Computer System and its use in programming
  • b
    Write the four storage classes used in C programming with example
  • a
    Discuss the various operators used in the C programming language with examples
  • b
    Write a C program to find largest number from four given num bers
  • a
    Write a program to print the pattern
  • b
    Write a Program to find the m ultiplication of two n*n matrix
  • a
    Write a Program to sort the given list of data using bubble sort and compare its time complexity with insertion sort
  • b
    Define call by reference. Write a program to swap two number s with this concept
  • a
    Define DMA. Write a program to allocate the run time memory and find the sum of all the numbers entered by the user within that memory
  • b
    Define Pointer. Discuss the self referential pointer with ex ample

Question text is extracted from the official AKTU question paper PDF above. Hindi translations are omitted — every question is printed in English in the original paper. Last verified: 2026-08-23.

Repeated Questions — BCS101

Questions that appeared in more than one session, found by comparing 4 years of Programming For Problem Solving papers (2022-23, 2023-24, 2024-25, 2025-26)

4x

Write a program to print the pattern

Appeared in: 2022-23 · 2023-24 · 2024-25 · 2025-26

2x

Write the four storage classes used in C programming with example

Appeared in: 2024-25 · 2025-26

2x

Write a Program to find the m ultiplication of two n*n matrix

Appeared in: 2023-24 · 2024-25