Interview Questions

Q:

Differentiate linked list from arrays.

Answer

Arrays can store data in a fix allotted space. The use of linked list allows more flexibility because space is dynamically allocated as needed.

Report Error

View answer Workspace Report Error Discuss

0 2056
Q:

What is Broadcast ?

Answer

To send data/info to all of the members of the network..( simple 176.16.255.255 for class B network)

Report Error

View answer Workspace Report Error Discuss

0 2056
Q:

What is a CDATA section in XML?

Answer

CDATA - (Unparsed) Character Data


The term CDATA is used when you dont want some text data to be parsed by the XML parser.


A CDATA section starts with "<![CDATA[" and ends with "]]>": 

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 2056
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 2053
Q:

What is the difference between an Interface and an Abstract class?

Answer

An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but cannot implement default behavior and all methods are implicitly abstract. An interface has all public members and no implementation. An abstract class is a class which may have the usual flavors of class members (private, protected, etc.), but has some abstract methods.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2053
Q:

How to set breakpoints?

Answer

Setting up the break points:



  1.  Go to the line where you need to mark the breakpoint.

  2.  Click with mouse on left corner margin of that line.

  3.  Another way is to press F9

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

0 2053
Q:

what are the types of standard SAP Internal Tables?

Answer

1)standered table


2)index table


3)hashed table


4)sorted table

Report Error

View answer Workspace Report Error Discuss

Subject: SAP

0 2052
Q:

What is decodeURI(), encodeURI() in JavaScript?

Answer

To send the characters that can not be specified in a URL should be converted into their equivalent hex encoding. To perform this task the methods encodeURI() and decodeURI() are used.


For example, the following code snippet performs the encoding of URL:


<script type="text/javascript">


          var uri = https://www.mysite.com/city?=Banglore; // original URI


          var ncodeuri=encodeURI(uri);


          document.write("<br />ncodeuri”);


          var dcodeuri = decodeURI(ncodeuri); 


          document.write(“<br>/>dcodeuri”);


</script>

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 2052