Skip to content

SPPU First Year (FE) Fundamentals of Programming Language (FPL) Lab Assignments (2024 Pattern) with Video Tutorials @Aledutron

Notifications You must be signed in to change notification settings

ganimtron-10/SPPU-2024-FE-FPL-Lab

Repository files navigation

SPPU-2024-FE-FPL-Lab

SPPU First Year (FE) Fundamentals Of Programming Language (FPL) Lab Assignments (2024 Pattern)

Aledutron Youtube FPL Lab Playlist Link: https://youtube.com/playlist?list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L

Question No. Problem Statement Code Link Youtube Link
1 To accept the number and Compute

a) square root of number,

b) Square of number,

c) Cube of number

d) check for prime,

e) factorial of number

f) prime factors.
Q01.c https://www.youtube.com/watch?v=rpDU2Et1ByE&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=5&pp=iAQB
2 To accept from user the number of Fibonacci numbers to be generated and print the Fibonacci series. Q02.c https://www.youtube.com/watch?v=uQKXGEhtRy4&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=6&pp=iAQB
3 To accept an object mass in kilograms and velocity in meters per second and display itsMomentum. Momentum is calculated as e=mc2 where m is the mass of the object and c is its velocity. Q03.c https://www.youtube.com/watch?v=CZFSSLdBKGE&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=2&pp=iAQB
4 In array do the following:

1. Find given element in array

2. Find Max and Min element

3. Find frequency of given element in array

4. Find Average of elements in Array.
Q04.c https://www.youtube.com/watch?v=PTL8rjAIgoo&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=7&pp=iAQB
5 Write a C program for employee salary calculation given, Basic, H.R.A. 20 % of Basic and D.A. 150 % of Basic. Q05.c https://www.youtube.com/watch?v=rPbegeSw7pk&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=3&pp=iAQB
6 To accept a student's marks for five subjects, compute his/her result. Student is passing if he/she scores marks equal to and above 40 in each course. If student scores aggregate greater than 75%, then the grade is distinguished. If aggregate is 60>= and <75 then theGrade of first division. If aggregate is 50>= and <60, then the grade is second division. If aggregate is 40>= and <50, then the grade is third division. Q06.c https://www.youtube.com/watch?v=3J0YnDtz8ks&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=7&pp=iAQB
7 To accept two numbers from user and compute smallest divisor and Greatest Common Divisor of these two numbers. Q07.c https://www.youtube.com/watch?v=3M1KqLFl6CM&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=4&pp=iAQB
8 Write a C program that accepts a string from the user and performs the following string operations

i. Calculate length of string

ii. String reversal

iii. Equality check of twoStrings

iv. Check palindrome

v. Check substring
Q08.c https://www.youtube.com/watch?v=dxhN5K2DKhk&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=9&pp=iAQB
9 Create Structure EMPLOYEE for storing details (Name, Designation, gender, Date of Joining and Salary), and store the data and update the data in structure. Q09.c https://www.youtube.com/watch?v=jI67KMMNlAI&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=10&pp=iAQB
10 Create class STORE to keep track of Products (Product Code, Name and price). Display menu of all products to users. Generate bills as per order. Q10.c https://www.youtube.com/watch?v=HSOyaYI8obo&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=11&pp=iAQB
Mini Project
1 Calculator with basic functions. Add more functionality such as graphic user interface and Complex calculations. MiniProject1.c https://www.youtube.com/watch?v=ZgQBWUpGpdI&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=12&pp=iAQB
2 Program that simulates rolling dice. When the program runs, it will randomly choose a number between 1 and 6 (Or other integer you prefer). Print that number. Request user to roll again. Set the min and max number that dice can show. For the average die, that means a minimum of 1 and a maximum of 6. MiniProject2.c https://www.youtube.com/watch?v=obtw21Eat1o&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=13&pp=iAQB
3 Guess Number: Randomly generate a number unknown to the user. The user needs to guess what that number is. If the user’s guess is wrong, the program should return some sort of indication as to how wrong (e.g. the number is too high or too low). If the user guesses correctly, a positive indication should appear. Write functions to check if the user input is an actual number, to see the difference between the inputted number and the randomly generated numbers, and to then compare the numbers. MiniProject3.c https://www.youtube.com/watch?v=4MF9F_pnDsg&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=14&pp=iAQB
4 To calculate the salary of an employee given his basic pay (take as input from user). Calculate gross salary of employee. Let HRA be 10 % of basic pay and TA be 5% of basic pay. Let employees pay professional tax as 2% of total salary. Calculate net salary payable after deductions. MiniProject4.c https://www.youtube.com/watch?v=sYoJPH3mMzc&list=PLlShVH4JA0ouBb_iMZPPNOcfyX2JtPQ5L&index=15&pp=iAQB