GTU Education2 Min Read Akhil BonAugust 22, 2026 Bubble Sort in C Sort an integer array in C with bubble sort and optional early-exit optimization.
Programming Tutorials1 Min Read Akhil BonAugust 22, 2026 Check if a File Exists in Python Without Exceptions Use pathlib.Path.exists or os.path.isfile to test for a file without try/except.
GTU Education1 Min Read Akhil BonAugust 22, 2026 Binary Search in C Implement iterative binary search in C on a sorted array and return the index of the key.
Programming Tutorials2 Min Read Akhil BonAugust 22, 2026 C Program Using a Student Record Structure Define a student struct in C with roll, name, and marks, then read and display records.
Programming Tutorials1 Min Read Akhil BonAugust 22, 2026 C Program to Check Prime Number Test whether an integer is prime in C by checking divisors up to sqrt(n).
Programming Tutorials2 Min Read Akhil BonAugust 22, 2026 C Program to Print Day of Week (1 to 7) Map integers 1–7 to weekday names in C using switch or if-else.
Programming Tutorials1 Min Read Akhil BonAugust 22, 2026 Check if a String Contains a Substring in JavaScript Use includes, indexOf, or a regex test to check substrings in JavaScript — with case-sensitivity notes.
Programming Tutorials1 Min Read Akhil BonAugust 22, 2026 Simple Python Calculator Code Build a small Python calculator that reads two numbers and an operator, then prints the result.
Programming Tutorials1 Min Read Akhil BonAugust 22, 2026 Python Program to Calculate the Area of a Triangle Compute triangle area in Python from base and height, or from three sides with Heron’s formula.
GTU Education2 Min Read Akhil BonAugust 22, 2026 C Program: Alternating Sign Power / Factorial Series Sum a GTU-style series with alternating signs, powers, and factorials in C.