Skip to content

Latest commit

 

History

History

README.md

Advance Billing System

-- User input section
Enter Product 1 -
Samosa
Do you Want to add more [Y/N]
Y
Enter Product 2 -
Kachori
Do you Want to add more [Y/N]
Y
Enter Product 3 -
Fafda
Do you Want to add more [Y/N]
Y
Enter Product 4 -
Jalebi
Do you Want to add more [Y/N]
N
Enter Samosa Price :
300/-
Enter Kachori Price :
100/-
Enter Fafda Price :
100/-
Enter Jalebi Price :
200/-

Do You Want to add GST [Y/N]
[note : if user select `N` Print bill without GST]
[Note User select yes `Y`]
Enter GST % = 18
-------Out put -------

1. Samosa = 300/-
2. Kachori = 100/-
3. Fafda = 100/-
4. Jalebi = 200/-
-------------------
Total = 700
GST = 18%
-------------------
Final Total = 826/-
-------------------

Super Advance Billing System

-- User input section
Enter Product 1 -
Samosa
Enter Samosa Price :
300/-
Enter Samosa QT :
3
-----------------------------
Do you Want to add more [Y/N]
Y
Enter Product 2 -
Kachori
Enter Kachori Price :
100/-
Enter Kachori QT :
2
----------------------------
Do you Want to add more [Y/N]
Y
Enter Product 3 -
Jalebi
Enter Jalebi Price :
200/-
Enter Jalebi QT :
4
Do you Want to add more [Y/N]
N

Do You Want to add GST [Y/N]
[note : if user select `N` Print bill without GST]
[Note User select yes `Y`]
Enter GST % = 18

Select Offer :
1. FLAT 2% OFF
2. FLAT 4% OFF
3. FLAT 8% OFF
[Note if user Select offer = then offer apply into bill] 
if user select [ 1 ]

-------Out put -------

1. Samosa = 900/-
2. Kachori = 200/-
3. Jalebi = 800/-
-------------------
Total = 1900
GST = 18%
offer = 2%
-------------------
Final Total = 2197.16/-
-------------------

Home Loan EMI Calculator

-- Input Section 
Loan Amount : =
₹ 74,51,512
Tenure (Years) := 
15
Interest Rate (% P.A.) =
5.19%

-- output Section
Monthly Home Loan EMI
₹59,666
View Details
Principal Amount
₹74,51,512
Interest Amount
₹32,88,408
Total Amount Payable
₹1,07,39,920

https://www.hdfc.com/home-loan-emi-calculator

Billing Stock System :

--- input Section ---
Enter SKU ( Unique Number ) : 101
Enter Product Name : Books
Enter Product QT : 20
Enter Single Book Price : 120/-

Do you Want Add more [Y/N]
Y
Enter SKU ( Unique Number ) : 102
Enter Product Name : toy
Enter Product QT : 5
Enter Single Book Price : 560/-

Do you Want Add more [Y/N]
Y
Enter SKU ( Unique Number ) : 103
Enter Product Name : Samosa
Enter Product QT : 250
Enter Single Book Price : 20/-

Do you Want Add more [Y/N]
N
--- Output Section---------
------  Search Item ------
Enter Product Item Form SKU No. 103
Total Cost : 5000/-
Product Name : Samosa
QT : 250 
Single Price : 20/-

Assignment 26: MATLAB

  1. Matrix Operations:

    • Create two matrices and perform basic matrix operations (addition, subtraction, multiplication) using MATLAB.
    • Print the results.
  2. Plotting:

    • Generate data points for a mathematical function (e.g., sine or cosine) and plot the function using MATLAB's plotting functions.

Assignment 27: SciPy

  1. Linear Algebra Operations:

    • Use SciPy to solve a system of linear equations.
    • Compute the eigenvalues and eigenvectors of a matrix.
  2. Optimization:

    • Implement a simple optimization problem using SciPy's optimization functions.
    • Print the optimized result.

Assignment 28: ndimage (part of SciPy)

  1. Image Processing:

    • Load an image using SciPy's ndimage module.
    • Apply various image processing operations, such as smoothing or filtering.
  2. Image Analysis:

    • Use ndimage to perform basic image analysis tasks, such as finding contours or measuring object properties.

Instructions:

  • Provide a MATLAB environment for MATLAB-related assignments.
  • For Python assignments, ensure that the required libraries (SciPy and ndimage) are installed.
  • Encourage students to use meaningful variable names and provide comments explaining their code.
  • Emphasize the importance of understanding the specific functions and capabilities of each tool.
  • Encourage experimentation with different datasets or scenarios to ensure the correctness of the code.