Front End Testing: when we check the client part of the program is often called the front end testing and the front end is responsible for checking syntax and detecting error.Back End Testing: The server part (means Database store part ) is called the back end and the back end performs the actual translation into object code.
Front end testing: The front end is responsible for checking syntax and detecting errorsBack End Testing : The back end performs the actual translation into object code.
backend testing is to test the backend component which the user cannot see .where as the frontend testing is to test the functionality and GUI.Regards Miku
FrontEnd Testing is something where in you test the GUI/functionality.GUI will take care of sending requests to the server and getting response from the same .Here we don' have accesss to control servers(start/stop) and alos to verify the database for the correctness of data.
back end Testing is something where in you don;t use the GUI.You directly pass the request through some browser with the parameters needed for the function and get a response in some default forma e.g xml.JSON.You would also need to connect to database directly and verify the data using SQL querries.Debugging can be done through log files .