Interview Questions

Q:

What are the advantages of the external over inline style methods?

Answer

- External Style Sheets are useful as it keeps the style and content separately and doesn’t allow it to mix with each other. It can control the styles for multiple documents, whereas inline style mixes the content with the style and make the code messier.


- External style sheet allows the creation of various classes in a structured way, whereas inline style sheet can’t create or control class elements.


- External style sheet can use selector and grouping methods to apply styles, whereas inline styles can’t use selector and grouping methods.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1817
Q:

What are Math Constants and Functions using JavaScript?

Answer

Math object has two constant : Math.PI and Math.E


 


Math object has following functions:


- Math.abs(val1);


It will give absolute value of val1.


- Math.max(val1,val2);


This fuction will return maximum value from val1 and val2.


- Math.random();


This function will return a random number between 0 and 1.


- Math.floor(val1)


This function will returns decimal value of val1

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1816
Q:

What does success mean to you?

Answer

There are many things you can say. This type of question doesn't have a wrong answer. All answers will be correct. So the best answer is how good you can make the answer. A mediocre answer will be something like completing a project on time. You can say this, but add another twist to make the answer a little better. Here is an example.


 


Short Answers :


"To me, success means to have a goal, plan the steps to achieve the goal, implement the plan, and finally achieve the goal."


"Success means to produce high quality work before the deadline."


"Success to me is knowing that my contributions positively impacted my company."


 


Long Answers :


"Success to me means completing a task and when looking back, thinking I couldn't have done it better. To succeed is to complete a task or assignment on time in an excellent manner. But that's only half of it. The results should be good and the people involved should gain a valuable lesson or experience. For example, if it was a group project, and only two people out of four really did the work, I wouldn't call that success. If everyone participated and worked together providing a valuable deliverable then it's a success. So I think both the result and the process should be great to call something a success."


This answer is showing that you believe in delivering great quality work. Moreover, it is implying how much you value team work. If you value teamwork highly, then it is safe to assume that you would make a great team player.

Report Error

View answer Workspace Report Error Discuss

1 1816
Q:

What is a class, member and local variable?

Answer

Variables declared within a method are local variables. Variables declared within the class are member variables.  Variables declared within the class with static modifier are class variables 

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1816
Q:

Describe Android Application Architecture.

Answer

Android Application Architecture has the following components:


> Services - like Network Operation


> Intent - To perform inter-communication between activities or services


> Resource Externalization - such as strings and graphics


> Notification signaling users - light, sound, icon, notification, dialog etc.


> Content Providers - They share data between applications

Report Error

View answer Workspace Report Error Discuss

0 1815
Q:

What is the step by step process to create a table in data dictionary ?

Answer

step 1: creating domains(data type, field length, range). 


step 2: creating data elements(properties and type for a table field).


step 3: creating tables(SE11).

Report Error

View answer Workspace Report Error Discuss

Subject: SAP

0 1814
Q:

What does INVEST stand for?

Answer

INVEST stands for Independent, Negotiable, Value, Estimable, Sized Appropriately and Testable. It is a tool designed to assist technical teams and deliver quality products.

Report Error

View answer Workspace Report Error Discuss

0 1813
Q:

What are the rules in CSS ruleset?

Answer

CSS consists of two types of CSS rules, first is for ruleset which identifies the style and the selector. It combines the style and the selector. Ruleset is a combination of CSS rules, for example: h1{text-color: 15pt;}, where this is the CSS rule. Ruleset is selector + declaration for example: h1 + {text-color: 15pt;}

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1813