Interview Questions

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 1873
Q:

What does in transit to destination mean?

A) on the way for delivery B) delay in delivery
C) booking processed but not shipped D) None of the above
 
Answer & Explanation Answer: A) on the way for delivery

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Job Role: Analyst

0 1872
Q:

Are you comfortable offering our charge account to customers?

Answer

A candidate should not be shy here. Someone who tells you that they are uncomfortable when being solicited for proprietary charges by other retailers will not be successful in your organization. If that is something that you as a candidate struggle with, make sure that you portray your desire to succeed. Tell the employer that it is something that you are gaining skills on, and would love the opportunity to perfect your script.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

0 1870
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 1870
Q:

What is the difference between Client side JavaScript and Server side JavaScript.

Answer

Client side java script comprises the basic language and predefined objects which are relevant to running java script in a browser. The client side java script is embedded directly by in the HTML pages. This script is interpreted by the browser at run time.


Server side java script also resembles like client side java script. It has relevant java script which is to run in a server. The server side java scripts are deployed only after compilation.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1866
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 1865
Q:

How many interactive reports did you write?

Answer

In an Interactive Report, user can define maximum 20 secondary lists.

Report Error

View answer Workspace Report Error Discuss

Subject: SAP

0 1865
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 1864