<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
  <channel>
    <title>SoloDig.com :: Forum</title>
    <link>http://solodig.com/</link>
    <description>Share, Discuss, Comment :: XOOPS Community Bulletin Board</description>
    <lastBuildDate>Mon, 01 Dec 2008 22:13:08 +2230</lastBuildDate>
    <docs>http://backend.userland.com/rss/</docs>
    <generator>CBB 3.08</generator>
    <category>Forum</category>
    <managingEditor>reddyhat@rediffmail.com</managingEditor>
    <webMaster>reddyhat@rediffmail.com</webMaster>
    <language>en</language>
        <image>
      <title>SoloDig.com :: Forum</title>
      <url>http://solodig.com/modules/newbb/images/xoopsbb_slogo.png</url>
      <link>http://solodig.com/</link>
      <width>92</width>
      <height>52</height>
    </image>
            <item>
      <title>7 star Designer copies wholesale with receipt [by joan green]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=88&amp;forum=2</link>
      <description>Suggest New Features:: 7 star Designer copies wholesale with receipt&lt;br /&gt;
We are a manufactory for (mirror image) desinger replica Handbags, wallets, Belts, Footwear, watches of LV (Louis Vuitton), GUCCI, FENDI, CHANEL, Chloe, Christian Dior... etc brands. &lt;br /&gt;&lt;br /&gt;Reasons for choosing us:  &lt;br /&gt;&lt;a href=&quot;http://www.ehbestfashion.cn&quot; target=&quot;_blank&quot;&gt;www.ehbestfashion.cn&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;1. Unbeatable price with highest grade quality(quality guaranteed the best!) &lt;br /&gt;2. Safe transportation world-wide &lt;br /&gt;3. Fast delivery &lt;br /&gt;4. Low shipping freight &lt;br /&gt;5. Perfect customer services &lt;br /&gt;&lt;br /&gt;Address : Rm1202 , No 985 Ren Min Road, Guangzhou Guangdong 510090 China&lt;br /&gt;&lt;br /&gt;   Please don&amp;#039;t hesitate to contact with us for further information. &lt;br /&gt;&lt;br /&gt;[img width=300]http://www.ehbestfashion.cn/pp/m95555.jpg[/img]</description>
      <pubDate>Sun, 23 Mar 2008 18:32:31 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=88&amp;forum=2</guid>
    </item>
        <item>
      <title>Re: mainframe faqs (DB2) (CICS) interview questions [by reddy chandrakanth]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=87&amp;forum=8</link>
      <description>Interview Questions:: mainframe faqs (DB2) (CICS) interview questions&lt;br /&gt;
The above questions are posted by &amp;nbsp;&lt;font color=&quot;#ff9900&quot;&gt;&lt;strong&gt;ARC KANTH&lt;/strong&gt;&lt;/font&gt;</description>
      <pubDate>Wed, 09 Jan 2008 11:15:07 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=87&amp;forum=8</guid>
    </item>
        <item>
      <title>Re: java,j2ee faq&#039;s best [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=86&amp;forum=8</link>
      <description>Interview Questions:: Java faq&#039;s (interview questions)&lt;br /&gt;
&lt;b&gt;What is meant by compatible equals() and hashCode() methods?&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;In order for the Java Collections to work properly (and everything else in Java), the equals() and hashCode() methods must be compatible.Here, compatible means that if equals() reports that two instances are the same, then the hashCode() of both instances must be the same value.&lt;br /&gt;The default hashCode() method uses the 32-bit internal JVM address of the Object as its hashCode. However, if the Object is moved in memory during garbage collection, the hashCode stays constant. This default hashCode is not very useful, since to look up an Object in a HashMap,you need the exact same key Object by which the key/value pair was&lt;br /&gt;originally filed. Normally, when you go to look up, you don&#039;t have the original key Object itself, just some data for a key. So, unless your key is a String, nearly always you will need to implement a hashCode and equals method on your key class. The Gemini Twins: equals and hashCode&lt;br /&gt;The default hashCode just uses the address of the Object and the default equals method just compares addresses. If you override one of these two methods, you must override the other to match. The rules are: &lt;br /&gt;•It is ok, but not desirable, if two Objects that do not&lt;br /&gt;compare equal have the same hashCode. &lt;br /&gt;•Two Objects that compare equal must have the same hashCode.&lt;br /&gt;So if you had a Fruit Object with a flavour and colour field, and you decided that any two Objects with the same flavour were for all intents and purposes equal, you would define your equals and hashCode methods like this: &lt;br /&gt;&lt;br /&gt;&lt;b&gt;What are all the classes in JDBC APi ?&lt;/b&gt;&lt;br /&gt;DriverManager The basic service for managing a set of JDBC drivers.&lt;br /&gt;NOTE: The DataSource interface, new in the JDBC 2.0 API, provides another way to connect to a data source.&lt;br /&gt;SQLException An exception that provides information on a database access error or other errors. SQLWarning&lt;br /&gt;An exception that provides information on database access warnings.&lt;br /&gt;&lt;br /&gt;When To Use Interfaces&lt;br /&gt;An interface allows somebody to start from scratch to implement your interface or implement your interface in some other code whose original or primary purpose was quite different from your interface. To them, your interface is only incidental, something that have to add&lt;br /&gt;on to the their code to be able to use your package. &lt;br /&gt;When To Use Abstract classes An abstract class, in contrast, provides more structure. It usually&lt;br /&gt;defines some default implementations and provides some tools useful for a full implementation. The catch is, code using it must use your class as the base. That may be highly inconvenient if the other programmers wanting to use your package have already developed their own class hierarchy independently. In Java, a class can inherit from&lt;br /&gt;only one base class. When to Use Both You can offer the best of both worlds, an interface and an abstract&lt;br /&gt;class. Implementors can ignore your abstract class if they choose.The only drawback of doing that is calling methods via their interface name is slightly slower than calling them via their abstract class name. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;static synchronized method&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Static synchronized methods have their monitor associated with the class itself. That&#039;s not fully precise but it&#039;ll suffice.Synchronized instance methods have their monitor associated with the instance Object. Two monitors (the very small toilets) cannot be owned (be synchronized upon) by two different threads at the same time, even when bare need is at hand (beershit or the like). This means that: when a Thread enters a static synchronized method of a given class, then no other Thread can enter another static&lt;br /&gt;synchronized method of that class. But other threads might execute any non-synchronized method, or a synchronized instance method. public Class MyClass public static synchronized a(){} public static synchronized b() public synchronized c() When executing a static synchronized method, the lock is on the Class object (MyClass). Therefore, no other thread can execute any other static synchronized method since they all lock on the same class.&lt;br /&gt;Only one thread at a time can execute an instance method that is synchronized from the same object.MyClass mc = new MyClass(); &lt;br /&gt;mc.c()&lt;br /&gt;only one thread can execute the above c() at a time.&lt;br /&gt;MyClass.a()&lt;br /&gt;Only one thread can execute the a() OR the b() at a time.&lt;br /&gt;A good example for using synchronized static methods is the singleton pattern. E.g. public class Singleton&lt;br /&gt;{&lt;br /&gt;  private Singleton() {}&lt;br /&gt;  private static Singleton fgUniqueInstance;&lt;br /&gt;  public static synchronized Singleton getInstance( )&lt;br /&gt;  {&lt;br /&gt;    if (fgUniqueInstance= =null) {&lt;br /&gt;      fgUniqueInstance = new Singleton();&lt;br /&gt;    }&lt;br /&gt;    return fgUniqueInstance;&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;If you won&#039;t synchronize this class in a multi-threading environment,it could happen, that more than one instance is created.&lt;br /&gt;So what does the static Thread.yield( ) have to do with all this? Not that much, in practice. What yield() is supposed to do is make the currently running thread head back to runnable to allow other threads of the same priority to get their turn. So the intention is to use yield() to promote graceful turn-taking among equal-priority threads. In reality, though, the yield() method isn&#039;t guaranteed to do what it claims, and even if yield() does cause a thread to step out of running and back to runnable, there&#039;s no guarantee the yielding thread won&#039;t just be chosen again over all the others! So while yield() might—and often does—make a running thread give up its slot to another runnable&lt;br /&gt;thread of the same priority, there&#039;s no guarantee. &lt;br /&gt;The Join() Method&lt;br /&gt;The nonstatic join() method of class Thread lets one thread &quot;join onto the end&quot; of another thread. If you have a thread B that can&#039;t do&lt;br /&gt;its work unt l another thread A has completed its work, then you want thread B to join&quot; thread A. This means that thread B will not becomerunnable until A has finished (and entered the dead state).&lt;br /&gt;&lt;br /&gt;Thread t = new Thread();&lt;br /&gt;t.start();&lt;br /&gt;t.join();&lt;br /&gt;&lt;br /&gt;The preceding code takes the currently running thread (if this were in the main() method, then that would be the main thread) and joins it to the end of the thread referenced by t. This blocks the current thread from becoming runnable until after the thread referenced by t is no longer alive. You can also call one of the overloaded versions of join&lt;br /&gt;that takes a timeout duration, so that you&#039;re saying, &quot;wait until thread t is done, but if it takes longer than 5,000 milliseconds, then stop waiting and become runnable anyway.&quot;&lt;br /&gt;&lt;br /&gt;The wait() method lets a thread say, &quot;there&#039;s nothing for me to do here, so put me in your waiting pool and notify me when something happens that I care about.&quot; Basically, a wait() call means &quot;wait me in your pool,&quot; or &quot;add me to your waiting list.&quot;&lt;br /&gt;All three methods—wait( )/notify( )/notifyAll( )—must be called from within a synchronized context! A thread invokes wait()/notify( ) on a particular object, and the thread must currently hold the lock on that object.&lt;br /&gt;  &lt;br /&gt;&lt;b&gt;Can we Serialize static variable?&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Answer:  Serialization is the process of converting a set of object instances that contain references to each other into a linear stream of bytes, which can then be sent through a socket, stored to a file, or simply manipulated as a stream of data. Serialization is the mechanism used by RMI to pass objects between JVMs, either as arguments in a method invocation from a client to a server or as return values from a method invocation. In the first section of this book, There are three exceptions in which serialization doesnot necessarily read and write to the stream. These are&lt;br /&gt;&lt;br /&gt;1. Serialization ignores static fields, because they are not part of any particular object&#039;s state.&lt;br /&gt;2. Base class fields are only handled if the base class itself is serializable.&lt;br /&gt;3. Transient fields. There are four basic things you must do when you are making a class serializable.&lt;br /&gt; They are: &lt;br /&gt;1. Implement the Serializable interface.&lt;br /&gt;2. Make sure that instance-level, locally defined state is serializedproperly.&lt;br /&gt;3. Make sure that superclass state is serialized properly.&lt;br /&gt;4. Override equals( )and hashCode( ).&lt;br /&gt;it is possible to have control over serialization process. The class should implement Externalizable interface. This interface contains two methods namely readExternal and writeExternal. You should implement these methods and write the logic for customizing the serialization process .... (Source:&lt;br /&gt;&lt;a href=&quot;http://www.oreilly.&quot; target=&quot;_blank&quot;&gt;http://www.oreilly.&lt;/a&gt; com/catalog/ javarmi/chapter/ ch10.html) &lt;br /&gt;&lt;b&gt;&lt;br /&gt;What is meant by Endianness? &lt;/b&gt; &lt;br /&gt;&lt;br /&gt;A2. Endianness describes how multiple data types such as short , int and long are stored in memory.If it takes two bytes to represent a short, then to predict if the most significant or the least significant comes first.If the most significant byte is first, followed by the least significant one then the machine is said to be big endian. Machines such as the SPARC and Power PC are big-endian,&lt;br /&gt;while the Intel x86 series is little-endian. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Is JavaScript the same as Java? &lt;/b&gt; &lt;br /&gt;&lt;br /&gt;NO! An Amazingly large number of people, including many web&lt;br /&gt;designers, don&#039;t understand the difference between Java and&lt;br /&gt;JavaScript. Briefly it can be summed up as follows: Java was&lt;br /&gt;developed by Sun Microsystems. Java is a full-fledged object-oriented programming language. It can be used to create standalone applications and applet. Applets are downloaded as separate files to your browser alongside an HTML document, and provide an infinite variety of added&lt;br /&gt;functionality to the Web site you are visiting. The displayed results of applets can appear to be embedded in an HTML page (e.g., the scrolling banner message that is so common on Java-enhanced sites),but the Java code arrives as a separate file. &lt;br /&gt;&lt;br /&gt;JavaScript on the other hand was developed by Netscape, is a smaller and simpler scripting language that does not create applets or standalone applications. In its most common form today, JavaScript resides inside HTML documents, and can provide levels of interactivity&lt;br /&gt;far beyond typically flat HTML pages -- without the need for&lt;br /&gt;server-based CGI (Common Gateway Interface) programs. Some server software, such as Netscape&#039;s SuiteSpot, lets web application developers write CGI programs in a server-side version of JavaScript. Both client-side and server-side JavaScript share the same core JavaScript language, but each side deals with different kinds of objects. Client-side objects are predominantly the components of an&lt;br /&gt;HTML web page (e.g., forms, text boxes, buttons). Server-side objects are those that facilitate the handling of requests that come from clients, as well as connectivity todatabases</description>
      <pubDate>Sat, 05 Jan 2008 13:44:18 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=86&amp;forum=8</guid>
    </item>
        <item>
      <title>Re: .NET framework interview questions [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=72&amp;forum=8</link>
      <description>Interview Questions:: .NET framework interview questions&lt;br /&gt;
&lt;b&gt;kindly participate in posting faqs plzzzzzzz&lt;/b&gt;</description>
      <pubDate>Sat, 29 Dec 2007 07:20:10 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=72&amp;forum=8</guid>
    </item>
        <item>
      <title>Re: C faqs(questions&amp;answers) [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=85&amp;forum=8</link>
      <description>Interview Questions:: C faqs(questions&amp;answers)&lt;br /&gt;
&lt;b&gt;1. What does extern mean in a function declaration?&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;A: It can be used as a stylistic hint to indicate that the&lt;br /&gt;function&#039;s definition is probably in another source file, but there is no formal difference between&lt;br /&gt;          extern int f();&lt;br /&gt;             and&lt;br /&gt;          int f();&lt;br /&gt;&lt;br /&gt;&lt;b&gt;2: What&#039;s wrong with this initialization?&lt;br /&gt;char *p = malloc(10);&lt;/b&gt; My compiler is complaining about an &quot;invalid initializer&quot;,&lt;br /&gt;or something.&lt;br /&gt;&lt;br /&gt;A: Is the declaration of a static or non-local variable? Function calls are allowed only in initializers for automatic variables(that is, for local, non-static variables&lt;br /&gt;&lt;br /&gt;&lt;b&gt;3: What is the difference between these initializations?&lt;br /&gt;char a[] = &quot;string literal&quot;;&lt;br /&gt;char *p = &quot;string literal&quot;;&lt;br /&gt;&lt;br /&gt;My program crashes if I try to assign a new value to p[i].&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;A: A string literal can be used in two slightly different ways. As an array initializer (as in the declaration of char a[]), it specifies the initial values of the characters in that array.Anywhere else, it turns into an unnamed, static array of characters, which may be stored in read-only memory, which is why you can&#039;t safely modify it. In an expression context, the array is converted at once to a pointer, as usual, so the second declaration initializes p to point to the unnamed array&#039;s first element.</description>
      <pubDate>Tue, 11 Dec 2007 20:35:40 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=85&amp;forum=8</guid>
    </item>
        <item>
      <title>enoy this joke hahaaaaaa [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=84&amp;forum=9</link>
      <description>Jokes Jokes..Just for Fun:: enoy this joke hahaaaaaa&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;This is a story from the Japanese Embassy in USA.&lt;br /&gt;&lt;br /&gt;A few years ago, Prime Minister Mori was given some Basic Englishconversation training before he visited Washington and met presidentBill Clinton.&lt;br /&gt;&lt;br /&gt;The instructor told Mori: &quot;Prime Minister, when you shake hand withPresident Clinton, please say &#039;how are you&#039;.Then Mr.Clinton should say,&quot;I am fine, and you?&quot;&lt;br /&gt;&lt;br /&gt;Now you should say &#039;me too&#039;. Afterwards we, translators, will do allthe work for you.&quot;&lt;br /&gt;&lt;br /&gt;It looks quite simple, but the! truth is.... When Mori met Clinton, hemistakenly said &quot;Who are you?&quot;. Mr. Clinton was a bit shocked but still managed to react with humour: &quot;Well, I am Hilary&#039;s husband,ha..ha..ha..&quot;&lt;br /&gt;&lt;br /&gt;Then Mori replied confidently &quot;Me too, ha..ha..ha..&quot; Then there was along silence in the meeting room.&lt;/span&gt;&lt;/span&gt;</description>
      <pubDate>Tue, 11 Dec 2007 13:04:17 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=84&amp;forum=9</guid>
    </item>
        <item>
      <title>short  funny story.........strong moral [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=83&amp;forum=9</link>
      <description>Jokes Jokes..Just for Fun:: short  funny story.........strong moral&lt;br /&gt;
&lt;b&gt;Hearing problem... a short story&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #0000CC;&quot;&gt;A man feared his wife wasn&#039;t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem. The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss. &lt;br /&gt;&lt;br /&gt;Here&#039;s what you do,&quot; said the Doctor, &quot;stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and s o on until you get a response.&lt;br /&gt;&lt;br /&gt;&quot;That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, &quot;I&#039;m about 40 feet away, let&#039;s see what happens.&quot; then in a normal tone he asks, &#039;Honey, what&#039;s for dinner?&quot; No response. So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, &quot;Honey, what&#039;s for dinner?&quot; Still no response. Next he moves into the dining room where he is &lt;br /&gt;about 20 feet from his wife and asks, Honey, what&#039;s for dinner?&quot; Again he gets no response so; He walks up to the kitchen door, about 10 feet away. &quot;Honey, what&#039;s for dinner?&quot; Again there is no response. So he walks right up behind her. &lt;br /&gt;&lt;br /&gt;&quot;Honey, what&#039;s for dinner?&quot; ;;;;&quot;James, for the FIFTH time I&#039;ve said, CHICKEN!&quot; &lt;/span&gt;</description>
      <pubDate>Tue, 11 Dec 2007 12:53:22 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=83&amp;forum=9</guid>
    </item>
        <item>
      <title>brain teasers-sharps tour brain [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=82&amp;forum=8</link>
      <description>Interview Questions:: brain teasers-sharps tour brain&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana;&quot;&gt;&lt;span style=&quot;color: #000066;&quot;&gt;&lt;span style=&quot;font-size: medium;&quot;&gt;1. Tom&#039;s mom had three children. The first was named May, the second was&lt;br /&gt;June. What was the third childs name?&lt;br /&gt;&lt;br /&gt;2. The manufacturer doesn&#039;t want to use it, the buyer doesn&#039;t need to use it&lt;br /&gt;and the user doesn&#039;t know he&#039;s using it. What is it?&lt;br /&gt;&lt;br /&gt;3. The word CANDY can be spelled using just 2 letters. Can you figure out&lt;br /&gt;how?&lt;br /&gt;&lt;br /&gt;4. Bill bets Craig $100 that he can predict the score of the hockey game&lt;br /&gt;before it starts. Craig agrees, but loses the bet. Why did Craig lose the&lt;br /&gt;bet?&lt;br /&gt;&lt;br /&gt;5. What is the next 3 letters in this sequence? &lt;br /&gt;o t t f f s s _ _ _&lt;br /&gt;&lt;br /&gt;6. FOUR is HALF of FIVE. &lt;br /&gt;Is this statement True or False?&lt;br /&gt;&lt;br /&gt;7. A woman shoots her husband. &lt;br /&gt;Then she holds him under water for over 5 minutes. &lt;br /&gt;Finally, she hangs him. &lt;br /&gt;But 5 minutes later they both go out together and enjoy a wonderful dinner&lt;br /&gt;together. &lt;br /&gt;How can this be?&lt;br /&gt;&lt;br /&gt;8. What do these 3 have in common? &lt;br /&gt;Superman &lt;br /&gt;Moses &lt;br /&gt;The Cabbage Patch Kids&lt;br /&gt;&lt;br /&gt;9. What is black when you buy it, red when you use it, and gray when you&lt;br /&gt;throw it away?&lt;br /&gt;&lt;br /&gt;10. Can you name three consecutive days without using the words Monday,&lt;br /&gt;Tuesday, Wednesday, Thursday, Friday, Saturday, or Sunday?&lt;br /&gt;&lt;br /&gt;11. I can sizzle like bacon, &lt;br /&gt;I am made with an egg, &lt;br /&gt;I have plenty of backbone, but lack a good leg, &lt;br /&gt;I peel layers like onions, but still remain whole, &lt;br /&gt;I can be long, like a flagpole, yet fit in a hole, &lt;br /&gt;What am I?&lt;br /&gt;&lt;br /&gt;12. This is an unusual paragraph. I&#039;m curious how quickly you can find out&lt;br /&gt;what is so unusual about it? It looks so plain you would think nothing was&lt;br /&gt;wrong with it! In fact, nothing is wrong with it! It is unusual though.&lt;br /&gt;Study it, and think about it, but you still may not find anything odd. But&lt;br /&gt;if you work at it a bit, you might find out! Try to do so without any&lt;br /&gt;coaching!&lt;br /&gt;&lt;br /&gt;13. Hi! Ma and Pa told me I&#039;d better say that all the two-letter words in&lt;br /&gt;this paragraph have something in common ...... or else! What&#039;s the common&lt;br /&gt;factor here?&lt;br /&gt;&lt;br /&gt;14. What falls but never breaks? &lt;br /&gt;What breaks but never falls? &lt;br /&gt;&lt;br /&gt;15. This one&#039;s a tuffy! There is a common English word that is seven letters&lt;br /&gt;long. Each time you remove a letter from it, it still remains a common&lt;br /&gt;English word - from seven letters right on down to a single letter. What is&lt;br /&gt;the original word, and what are the words that it becomes after removing a&lt;br /&gt;letter at a time?&lt;br /&gt;&lt;br /&gt;16. In olden days you are a clever thief charged with treason against the&lt;br /&gt;king and sentenced to death. But the king decides to be a little lenient and&lt;br /&gt;lets you choose your own way to die. What way should you choose? Remember,&lt;br /&gt;you&#039;re clever! &lt;br /&gt;&lt;br /&gt;17. What is it that when you take away the whole, you still have some left&lt;br /&gt;over?&lt;br /&gt;&lt;br /&gt;18. What six letter word in the English language contains ten other words&lt;br /&gt;without rearranging any of its letters? &lt;br /&gt;&lt;br /&gt;19. Name an English word of more than 2 letters that both begins and ends&lt;br /&gt;with the letters &quot;he&quot; in that order. There are two possible answers. &quot;hehe&quot;&lt;br /&gt;is not acceptable. &lt;br /&gt;&lt;br /&gt;20. A man was found murdered on Sunday morning. His wife immediately called&lt;br /&gt;the police. The police questioned the wife and staff and got these alibis: &lt;br /&gt;The Wife said she was sleeping. &lt;br /&gt;The Cook was cooking breakfast. &lt;br /&gt;The Gardener was picking vegetables. &lt;br /&gt;The Maid was getting the mail. &lt;br /&gt;The Butler was cleaning the closet. &lt;br /&gt;&lt;br /&gt;The police instantly arrested the murdered. Who did it and how did they&lt;br /&gt;know?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;hope iam expecting nice solutions from you..............&lt;/b&gt;</description>
      <pubDate>Sat, 08 Dec 2007 18:49:49 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=82&amp;forum=8</guid>
    </item>
        <item>
      <title>love with software girl - too funny naaaa [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=81&amp;forum=9</link>
      <description>Jokes Jokes..Just for Fun:: love with software girl - too funny naaaa&lt;br /&gt;
&lt;span style=&quot;font-size: medium;&quot;&gt;&lt;span style=&quot;color: #003333;&quot;&gt;&lt;b&gt;Never LOVE a Software Girl &lt;/b&gt; &lt;/span&gt;&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #0000CC;&quot;&gt;&lt;span style=&quot;font-family: Helvetica;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;·Never marry a Testing girl since she always doubts U&lt;br /&gt;&lt;br /&gt;·Never marry a DATABASE girl since she always wants her husband to be a UNIQUE key.&lt;br /&gt;&lt;br /&gt;·Never marry a C girl because she always have a tendency to BREAK the things and EXIT from house.&lt;br /&gt;&lt;br /&gt;·Never marry a C++ girl as u may encounter some problems in INHERITANCE.&lt;br /&gt; &lt;br /&gt;·Never marry a JAVA girl since she always throws EXCEPTIONS&lt;br /&gt; &lt;br /&gt;.Never marry a VB girl since she has divorce FORM with her always. &lt;br /&gt;&lt;br /&gt;·Never marry a UNIX girl ,she always dump u with a core.&lt;br /&gt; &lt;br /&gt;·Never marry a PASCAL girl ,she always scolds u as rascal.&lt;br /&gt; &lt;br /&gt;·Never marry a COBOL girl since she may be very good in DIVISION of families.&lt;br /&gt; &lt;br /&gt;·Never marry a NETWORK girl since she may be very good in shooting troubles. &lt;br /&gt;  &lt;/b&gt; &lt;/span&gt; &lt;/span&gt; &lt;/span&gt;</description>
      <pubDate>Sat, 08 Dec 2007 18:40:24 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=81&amp;forum=9</guid>
    </item>
        <item>
      <title>funny interview at some [by Ravikiran]</title>
      <link>http://solodig.com/modules/newbb/viewtopic.php?topic_id=80&amp;forum=9</link>
      <description>Jokes Jokes..Just for Fun:: funny interview at some&lt;br /&gt;
Read it and enjoy..........&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; Tell me about yourself.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; I am  Kondesh  Kulkarni. I did my Tele Communication engineering from BabanRao Dhole-Patil Institute of Technology.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Interviewer: &lt;/b&gt; BabanRao Dhole-Patil Institute of Technology? I had never heard of this college before! &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; Great! Even I had not heard of it before getting an admission into it . What happened is - due to cricket world cup I scored badly in 12th.I was getting a paid seat in a good college. But my father said (I prefer to call him &#039;baap&#039;) - &quot;I can not invest so much of money&quot;.(The baap actually said - &quot;I will never waste so much of money on you&quot;). So I had to join this college. Frankly &lt;br /&gt;speaking this name - BabanRao Dhole-Patil, can at the most be related to a Shetakari Mahavidyalaya. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; ok, ok. It seems you have taken 6 years to complete your engineering. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Candidate :&lt;/b&gt; Actually I tried my best to finish it in 4 years. But you know , these cricket matches and football world cup, and tennis tournaments..It is difficult to concentrate. So I flunked  in 2nd and 3rd year. So in all I  took 4 + 2 = 7 years. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; But 4+2 is 6. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; Oh, is it? You know I always had KT in maths. But I will try to keep this in mind. 4+2 is  6, good, thanks. These cricket matches really affect exams a lot. I think they ! should ban it. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer :&lt;/b&gt; Good to know that you want cricket matches to be banned. &lt;br /&gt;&lt;b&gt;&lt;br /&gt;Candidate:&lt;/b&gt; No, no.. I am talking about Exams!!&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; Ok, What is your biggest achievement in life?&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; Obviously, completing my Engineering. My mom never thought I would complete it. In fact,  when i flunked in 3rd year, she was looking for a job for me in BEST(Bus corporation in Maharashtra ) through some relative ..&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; Do you have any plans of higher study? &lt;br /&gt;&lt;b&gt;&lt;br /&gt;Candidate:&lt;/b&gt; he he he.. Are you kidding? Completing &#039;lower&#039; education itself was so much of pain!! &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; Let&#039;s talk about technical stuff. On which platforms have you worked?&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; Well, I work at SEEPZ, so you can say Andheri is my current platform . Earlier I was at Vashi center. So Vashi was my platform then. As you can see I have experience of different platforms ! (Vashi and Andheri are the places in Mumbai)&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; And which languages have you used?&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; Marathi, Hindi, English. By the way, I can keep quiet in German, French, Russian and ma! ny other languages. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; Why VC is better than VB?&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; It is a common sense - C comes after B. So VC is a higher version than VB. I heard very soon they are coming up with a new language VD! &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer :&lt;/b&gt; Do you know anything about Assembly Language?&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Candidate :&lt;/b&gt; Well, I have not heard of it. But I guess, this is the language our ministers and MPs use in assembly ..&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; What is your general project experience? &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; My general experience about projects is - most of th! e times they are in pipeline!&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; Can you tell me about your current job? &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; Sure, Currently I am working for Bata InfoTech ltd. Since joining BIL, I am on Bench. Before joining BIL, I used to think that Bench was another software like Windows. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; Do you have any project management experience? &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; No, but I guess it shouldn&#039;t be difficult. I know Word and Excel. I can talk a lot. I ! know how to dial for International phone call and use speaker facility. And very important - I know few words like - &#039;Showstoppers &#039; , &#039;hotfixes&#039;, &#039;SEI-CMM&#039;,&#039;quality&#039;,&#039;versioncontrol&#039;,&#039;deadlines&#039; , &#039;Customer Satisfaction&#039; etc. Also I can blame others for my &lt;br /&gt;mistakes! &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer:&lt;/b&gt; What are your expectations from our company? &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Candidate:&lt;/b&gt; Not much. &lt;br /&gt;1. I should at least get 40,000 in hand. &lt;br /&gt;2. I would like to work on a live EJB project. But it should not have deadlines. I personally feel that pressure affects natural talent. &lt;br /&gt;3. I believe in flexi-timings. &lt;br /&gt;4. Dress code is against basic freedom, so I would like to wear t-shirt and jeans. &lt;br /&gt;5. We must have sat-sun off. I will suggest wednesday off also, so as to avoid breakdown due to overwork. &lt;br /&gt;6. I wo! uld like to go abroad 3 times a year on short term preferably 1-2 months) assignments. Personally I prefer US, Australia and Europe . But considering the fact that  there is a world cup  in West Indies in 2007,I don&#039;t mind going there in that period . As you  can see I am modest and don&#039;t have many expectations. So can I assume my  selection? &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Interviewer: &lt;/b&gt; he he he ha ha ha. Thanks for your interest in our organization.  In fact I was never entertained so much before. ..&lt;img src=&quot;http://solodig.com/uploads/smil3dbd4d6422f04.gif&quot; alt=&quot;&quot; /&gt;)  We look forward to working with you .. welcome to Infosys &lt;img src=&quot;http://solodig.com/uploads/smil3dbd4d6422f04.gif&quot; alt=&quot;&quot; /&gt;</description>
      <pubDate>Sat, 08 Dec 2007 18:31:25 +2230</pubDate>
      <guid>http://solodig.com/modules/newbb/viewtopic.php?topic_id=80&amp;forum=9</guid>
    </item>
      </channel>
</rss>