Interview Questions

Q:

Describe your ideal job?

Answer

Describe your ideal job?


You should use this question to relate to the post you applied and give them the feel that this is close to your ideal job. So align your wonderful ideal job reasons to the responsibilities of the job posting. 


This is a question that you can use to add some humor or do a icebreaker like just joking that your ideal job is to work in a space station or would like to work in Hollywood but after a quick laugh give a realistic answer like my ideal job is where i get more responsibilities, enhance my skills and grow, and of-course you can add saying you would like to be part of a team where work is fun. If you want to go further, You might add at the end you heard good things about the work environment in the interviewing company.

Report Error

View answer Workspace Report Error Discuss

Subject: Common Interview

1 1838
Q:

How can your application perform actions that are provided by other application e.g. sending email?

Answer

Intents are created to define an action that we want to perform and the launches the appropriate activity from another application.


Code


        Intent intent = new Intent(Intent.ACTION_SEND);


        intent.putExtra(Intent.EXTRA_EMAIL, recipientArray);


        startActivity(intent);

Report Error

View answer Workspace Report Error Discuss

0 1833
Q:

What are JavaScript types?

Answer

Number, String, Boolean, Function, Object, Null, Undefined.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1833
Q:

How to get last modified date of a file?

Answer

long lastModified();


we can give this return value to a date object and we can get data to be displayed.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1831
Q:

What does isNaN function do?

Answer

It Return true if the argument is not a number.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1829
Q:

What does Customer Satisfaction mean to you?

Answer

Customer Satisfaction means, dealing with the customer in a proper or positive way. Every individual mindset is  different so their cause and satisfactory leave also changed. So the main challenge of a worker of a call center is to make them understand that they are also concerned about their trouble.

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

3 1828
Q:

How to create a file on the hard disk by using File class object?

Answer

We can use the following method call:


boolean createNewFile();


This method creates a new file on the HD. 


 


If a file is already existing with the name given in the constructor then this method does not creates file on HD.


If file is successfully created then this method returns true.


If file is already existing on the HD then this method returns false.


This method may throw IOException whenever IO error is generated while creating file on HD.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1828
Q:

What are joins? Explain its characteristic features .

Answer

Joins are used to combine data of one or more tables. Joins should be used when there is abundant data. Joins can be LEFT, RIGHT, OUTER, INNER or even SELF JOIN. The purpose is to bind data from multiple tables without any receptivity

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 1824