Correct Answer: Actually Here is asking for providing service, in which way and in which time we are able to serve the customer with flexibility and with relatively therefore we can say that at the time of service we are able to serve but from their rise a question:- if the organization is working properly for 24 hrs then what about the service? ence we can say that in the time which m there otherwise we serve with corporative way
2. What experiences have you had in dealing with difficult customers?
Correct Answer: The reputation of a company controls its profit margins A bad reputation means fewer customers If you cannot handle difficult customers, that would be a major obstacle for you in a job where dealing with irritated members of the public will be routine Start generally but select one incident soon afterwards and describe the outcome of that Be very clear about the circumstance what happened and how you dealt with it, especially how you resolved any tricky issues that arose The key words here are mutual respect, listening to the customer, being calm in the face of irritation and concluding the situation positively
3. Have you had experience of locking up a shop and dealing with stock ordering?
Correct Answer: These are a couple of examples of things that retail staff may be expected to get involved with, and they'll be keen to see how much additional training they might need to provide
4. What are the things that you need to check in a retail market, as a first line supervisor?
Correct Answer: Applicant should answer that as a first line supervisor, he/she should directly supervise sales workers in a retail department He/She would get involved in management functions such as purchasing, budgeting, accounting and ensure quality of supply apart from his/her regular supervisor work
5. How will you make customers feel welcome in our store?
Correct Answer: Countless potential customers in retail shops go unnoticed every day It is often this attitude of indifference that leads people to shop at other places Make sure that you have a candidate that will meet and greet your customers Interviewees, let your personality shine here Let your interviewer know that you are not afraid to introduce yourself to customers, and that you will not be hiding in the back restocking something
Correct Answer: RDBMS is a database management system based on relational model defined by EFCodd Data is stored in the form of rows and columns The relations among tables are also stored in the form of the table Features: - Provides data to be stored in tables - Persists data in the form of rows and columns - Provides facility primary key, to uniquely identify the rows - Creates indexes for quicker data retrieval - Provides a virtual table creation in which sensitive data can be stored and simplified query can be applied(views) - Sharing a common column in two or more tables(primary key and foreign key) - Provides multi user accessibility that can be controlled by individual users
7. What is function prototyping? What are its advantages?
Correct Answer: Function prototyping is a function declaration statement that tells the compiler about the return type of the function and the number as well as type of arguments required by the function at the time of calling it Syntax: return_type function_name( type1 arg1, type 2 arg2, ); Advantages of function prototype : - It helps the compiler in determining whether a function is called correctly or not Each time when a function is called, its calling statement is compared with its prototype In case of any mismatch, compiler reports an error - A function must be defined before calling it But prototyping allows a function to be called before defining it
8. Which of the following can't be done with client-side JavaScript?
Options
A. Sending a form's contents by email
B. Storing the form's contents to a database file on the server
Correct Answer: DHTML stands for Dynamic HTML The first thing that we need to clear about DHTML is that it is neither a language like HTML, JavaScript etc nor a web standard It is just a combination of HTML, JavaScript and CSS It just uses these languages features to build dynamic web pages DHTML is a feature of Netscape Communicator 40, and Microsoft Internet Explorer 40 and 50 and is entirely a "client-side" technology Features of DHTML: - Simplest feature is making the page dynamic - Can be used to create animations, games, applications, provide new ways of navigating through web sites - DHTML use low-bandwidth effect which enhance web page functionality - Dynamic building of web pages is simple as no plug-in is required - Facilitates the usage of events, methods and properties and code reuse
10. What is the difference between stack and array?
Correct Answer: Stack: - Stack is a ordered collection of items - Stack is a dynamic object whose size is constantly changing as items are pushed and popped - Stack may contain different data types Array: - Array is an ordered collection of items - Array is a static object ie no of item is fixed and is assigned by the declaration of the array - It contains same data types