Interview Questions

Q:

What would be the most important service skill that you would need to have in your day to day business?

Answer



1.Patience:If you deal with clients on a daily basis, be certain to stay patient when they come to you confused and frustrated, but also be clear to take the time to truly find out what they need — they'd rather get good service than be rushed out the door!


2. Attentiveness: The capacity to surely listen to customers is so crucial for presenting extremely good service for a number of reasons.


3.Communication Skills: When it comes to crucial points that you want to relay clearly to customers, keep it easy and leave not anything to doubt.


4.Knowledge of the Product: Not knowing your product from front-to-back, you might not know how to solve customer issues when they run into problems.


5.Willingness to Learn: Those who don't show to enhance skills what they do, whether it's helping customers, marketing businesses, or building products, will get left behind by the people willing to put money into their skills.


6.Ability to Use "Positive Language":


    Without positive language: "I cannot get you that product until next month; it is back-ordered and unavailable presently."


    With positive language: "That brand will be available coming month. I can place the order for you immediately and make sure that it is posted to you as soon as it reaches our war


 


 

Report Error

View answer Workspace Report Error Discuss

0 1447
Q:

24/7 operations are like relay races where you take the baton, run with it and then pass it on smoothly. How do you make seamless transitions on shift changes?

Answer

Sample Answers :


(i) Be prepared for the incoming crew. Ensure the ambulance is clean and fully stocked. Arrive early so that shift changes can take place on time, still leaving you enough time to check the ambulance and be ready to go if you get a call.


(ii) Show up a little early for your shift for rig check and to receive any information from outgoing crew. When you are the outgoing crew,leave rig in a better state than you found it. Communicate with incoming/outgoing crew allowing a smooth transition.

Report Error

View answer Workspace Report Error Discuss

0 1447
Q:

What is JAR file? what are the main uses of JAR files?

Answer

JAR files are java's version of ZIP files. In fact, JAR uses the ZIP file format.


uses:


- to compress a number of . class files into one file


- to make a java executable JAR file.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1447
Q:

How to determine the state of a checkbox using Javascript?

Answer

var checkedP = window.document.getElementById("myCheckBox").checked;

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1447
Q:

What are the features of iphone 3G?

Answer

Video: Videos can be edited, shared. High quality VGA video can be shot in portrait or landscape.

- 3 Megapixel Camera: Still photos with greater quality can be taken

- Voice control: It recognizes the names in contacts and recognizes the music on iPod.

- Compass: iPhone 3GS has built-in digital compass, used to point the way.

- Internet Tethering: Internet surfing can be done from anywhere. A 3G connection can be shared on Iphon3 with Mac notebook or laptop.. 

Report Error

View answer Workspace Report Error Discuss

0 1446
Q:

What is HTML5 Web Storage?

Answer

With HTML5, it is possible for the web pages to store the data locally in the user's browser. This web storage is much faster and secured than the cookies. Also, a larger amount of data can be stored without causing any adverse effect to the performance of the website. 


The data here is not included with every server request. It is used ONLY when it is asked for. It is only that particular web page that can access the data stored by itself.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1446
Q:

What is the use of Media Types in CSS?

Answer

Media types in CSS define the media like audio and video to be used in your HTML document to represent the properties in a better way. The font property can be used for media types as it can be used for print media or screen media. Document requires a defined media to represent the screen that can be read on the paper. It is used as:@media 


<html>


<head>


<style>


@media screen


{


p.test {font-family:verdana,sans-serif;font-size:14px;}


}


@media print


{


p.test {font-family:times,serif;font-size:10px;}


}


</style>


</head>


<body>


----------Your code here----------


</body>


</html>

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1445
Q:

What is the purpose of pseudo-elements?

Answer

Pseudo elements allow the use of the part of element and not the element itself. They are applied to block level element, which is used for the complete block for which the CSS is being written. This allow the subpart of an element to be styled like paragraphs and headings. For example:


selector:pseudo-element {property:value;}


p: first-line {text-transform: lowercase;}


It adds the style to the first line of the code in the paragraph.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1445