The following JSON represents a fee structure for courses in a university.
{
"Exam Fee":{
"INDIAN":{
"ALL_COURSES":{
"ALL_LEVEL":{
"amount":400
}
}
},
"FOREIGN":{
"ALL_COURSES":{
"ALL_LEVEL":{
"amount":100
}
}
},
"NRI":{
"ALL_COURSES":{
"ALL_LEVEL":{
"amount":600
}
}
},
"SAARC":{
"ALL_COURSES":{
"ALL_LEVEL":{
"amount":600
}
}
}
},
"Application Fee":{
"INDIAN":{
"ALL_COURSES":{
"UG":{
"amount":200
},
"UG-DIPLOMA":{
"amount":300
},
"PG":{
"amount":500
}
}
},
"FOREIGN":{
"ALL_COURSES":{
"UG":{
"amount":400
},
"UG-DIPLOMA":{
"amount":400
},
"PG":{
"amount":700
}
}
}
}
}
Write a program using any language / Please use Reacjs framework as a choice that allows a user to determine the accurate fee to be paid based on the JSON above. (USE REACTJS Frame work)
Use Case: The user HAS to select the fee first, after selecting that, the program shows the list of associated nationalities based on the inner keys of the selected fee. Once a nationality is selected, it shows the list of courses for that fee / nationality.
Note: If an entry is ALL_COURSES, then that needs to be substituted with the following list, and one can be chosen.
Medical, Dental, Ayurveda
Once the course is selected, we select the level of the course based on the previous selection.
Note: If an entry is ALL_LEVEL, then that needs to be substituted with the following list, and one can be chosen.
UG, PG, DIPLOMA, Ph.D
Once all four options are selected, the resulting fee amount is to be shown.
Note: The expectation is that the above JSON will be parsed to arrive at the solution. A reference to the JSON above must exist in the solution.
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of