Skip to main content

Freshers & Experienced Openings July 2024

https://www.pharmatutor.org/content/july-2024/biocon-biologics-walk-in-drive-for-mpharm-bpharm-msc-in-qa-qc-manufacturing

Tavant Technologies Interview Questions

Hi Friends,

This interview is for 3 years experienced Java/J2EE guy.


First Round:


1) About project

2) All basics of Java – Encapsulation , Polymorphism, Over riding, inheritance, over loading

3) Exception handling – Checked and unchecked exceptions

4) Example for runtime exceptions

5) What is abstraction and difference between interface and abstract class

6) Basics of threads

7) Which one is preferable thread class or runnable interface

8) Single ton – Other design patterns - Write sample singleton class

9) Collections

10) What is the output:
Try{
sysout(“hello”);
some code written here which throw an exception
} catch(Exception e){
System.exit(0)
} finally{
Sysout (“end”);
}


11) A class Thread A with overridden run method.. {run(){Sysout("TT"); }}
A main program psvm{ a.run(); // call run
a.run(); // call run
a.start(); //start the thread
}
What happens, what is the output?

12) Some basic questions on select queries.

13) Many more… small programs

Second Round:

1) About project

2) Difference between Stringbuffer and stringbuilder

3) Reversing a string without using string.reverse : http://www.java2s.com/Code/Java/Language-Basics/ReverseStringTest.htm

4) What is singleton, factory, façade – definitions and how you implement.

5) What is MVC

6) What is deadlock and write a sample code for deadlock and tell me how you solve this deadlock. Without using wait or notify

7) Thread A obj, Thread B obj, Thread C obj for the same class and that class contains 3 static synchronized methods so when we start the 3 threads say a.meth1, b.meth2, c.meth3 what will happen – does all three will execute or only one

8) What are different types of locks? (class lock/object lock)

9) Added to question 7 , if I have a static long l =10 class variable and in all three methods I have given l++ then what will happen.

10) Difference between Classnotfound exception and noclassdeffound exception

11) Different HTTP status codes like 200, 500, 402, 401,404 etc

12) Spring questions

13) Servlet lifecycle and portlet lifecycle and differences between them

14) When sevlet lifecycle methods are executed and loaded? what does the web container does when request comes and when destroy() executes.

15) Difference between include and forward

16) Request dispatcher and send redirect differences with that what happens internally when you use send redirect.

17) Hashcode questions.. why you override both hashcode and equals method

18) What algorithm is used for hashcode

19) What algorithm is used for hashmap and how is it implemented

20) Class a then a obj1 = new a() then a obj2 = new a() what will return obj1 == obj2 and obj1 == obj1 and what happens internally

21) Added to question 20 class a obj1.equals(obj2) internally what happens

22) Added to question 20 class a has a new variable static long i==0 and overridden equals method says{ i==i} and hashcode method now obj1 == obj2 what happens

23) What is webservices

24) How you deploy a war file in tomcat without using tomcat admin

25) What is serialization and internally what happens when you serialize it and advantages of it.

26) About synchronization also

27) Why u want to shift your company

28) Two tables

Table name : Employee Dept
Name Name
EMP id EMP id
Salary Dept id

Get all the employees with dept name as IT
get first five employees with highest salary with dept name IT.
Get the emp Ids who are not there in dept table.

29) Some more… which I don’t remember……… :)

Let me know if you have any questions or answers in comments. Thank you.

Please contact me if you wish to contribute.

Comments

  1. You can copy this program and try it out where you can able to answer atleast 5 to 6 questions above.

    import java.util.ArrayList;
    import java.util.List;

    public class OnlyOneInMethod {
    private String objID;
    static int num = 10;
    public OnlyOneInMethod(String objID) {
    this.objID = objID;
    }


    public OnlyOneInMethod() {
    // TODO Auto-generated constructor stub
    }


    public static synchronized void doStuff(int val) {

    System.out.print("entering doStuff()" + num);
    //num = val + 2 ;
    num++;
    System.out.println("doStuff variable num=" + num);

    /*try {
    Thread.sleep(2000);
    } catch (InterruptedException x) {
    }*/

    System.out.print("leaving doStuff()");
    }
    public static synchronized void doStuff1(int val) {

    System.out.print("entering doStuff1()" + num);
    //num = val + 2 ;
    num++;
    System.out.println("doStuff1 variable num=" + num);

    /* try {
    Thread.sleep(2000);
    } catch (InterruptedException x) {
    }
    */
    System.out.print("leaving doStuff1()");
    }
    public void print(String msg) {
    threadPrint("objID=" + objID + " - " + msg);
    }

    public static void threadPrint(String msg) {
    String threadName = Thread.currentThread().getName();
    System.out.println(threadName + ": " + msg);
    }
    public boolean equals(OnlyOneInMethod o){
    return this.num == o.num;

    }

    public static void main(String[] args) {
    OnlyOneInMethod ooim = new OnlyOneInMethod("obj1");
    OnlyOneInMethod ooim2 = new OnlyOneInMethod("obj1");

    System.out.println(ooim == ooim2);
    System.out.println(ooim.equals(ooim2));
    System.out.println(ooim == ooim);

    String s = "hello";
    String s1 = new String("hello");

    System.out.println(s == s1);
    System.out.println(s.equals(s1));
    System.out.println(s == s);

    Runnable runA = new Runnable() {
    public void run() {
    doStuff(3);
    //doStuff1(3);
    }
    };

    Thread threadA = new Thread(runA,"ThreadA");


    /*try {
    Thread.sleep(200);
    } catch (InterruptedException x) {
    }*/

    Runnable runB = new Runnable() {
    public void run() {
    doStuff1(7);
    }
    };

    Thread threadB = new Thread(runB,"ThreadB");
    threadA.start();
    threadB.start();
    }
    }

    ReplyDelete
  2. Is television really that harmful to kids? Depending on the show and duration of watching, yes. Researchers have found that exposure to programs with fast edits and scene cuts that flash unrealistically across the screen are associated with the development of attentional problems in kids. guarantor loans

    ReplyDelete

  3. The great service in this blog and the nice technology is visible in this blog. I am really very happy for the nice approach is visible in this blog and thank you very much for using the nice technology in this blog

    software testing course in chennai

    ReplyDelete
  4. The emergence of large online travel agencies changed the rules of the business across the globe. Fuel prices and global economic conditions added to the challenges of earning healthy margins.ASUS Rog Strix Z370-E review

    ReplyDelete
  5. This comment has been removed by the author.

    ReplyDelete
  6. I am amazed by the way you have explained things in this article. This article is quite interesting and I am looking forward to reading more of your posts. Thanks. Opt for the Triangle shape background vector free download

    ReplyDelete

Post a Comment

Popular Posts

Freshers & Experienced Openings July 2024

https://www.pharmatutor.org/content/july-2024/biocon-biologics-walk-in-drive-for-mpharm-bpharm-msc-in-qa-qc-manufacturing

Wise Disk Cleaner

Wise Disk Cleaner is a free disk utility designed to help you keep your disk clean by deleting any unnecessary files. Wise Disk Cleaner, with its intuitive and easy to use interface, helps to quickly wipe out all the junk files. It works quite fast while scanning for files and deleting them. The developers aver that it the first system slimming tool that removes Windows useless files, Windows Sample music, videos, pictures, Installers and Uninstallers of Updates Patches etc. Wise Disk Cleaner supports Windows XP/Vista /7/8 (All Editions, including 32-bit and 64-bit) and server 2000, 2003 and 2008. http://www.wisecleaner.com/soft/WDCFree.exe

Java, Developer / Sr. Developer WALK-IN Mumbai & Bangalore on Saturday 10th March 2012

Our next WALK-IN event for experienced software professionals is scheduled in Mumbai & Bangalore on Saturday 10 th March 2012 as per details below. Qualification            :   B.Sc / BCA / B.E / B Tech / MCA / Post Graduate Selection process   :   Technical Test (up to 4 years Relevant Experience) + Interviews Date : March 10, 2012 (Saturday)            Event   Location : Mumbai                          Time : 10am to 3pm Role      :  Developer     Skills     :   Java, JSP, Servlets with Struts /                    Springs / GWT   Work Location   : Mumbai   Relevant Exp     : 1 - 4 Yrs Venue : Oracle Financial Services Software Ltd, Oracle Park, Off Western Express Highway, Goregaon (East), Mumbai 400 063.   Contact Number : +91-22-6718 4000 Date : March 10, 2012 (Saturday)            Event   Location : Bangal...

Freeware / Free Software's 1 Jul 2010

Cloud Scanner Comodo Cloud Scanner (CCS) is an online service which can quickly and accurately identify malware, viruses, junk files, registry errors and hidden processes that may be lurking in a computer. Comodo Cloud Scanner audits all processes that are running on a computer then verifies them in real time with its 'live' database. Its features include: Detects malware and suspicious files, discovers privacy issues & identity traces, reveals corrupt, unwanted and invalid registry entries, Identifies junk files on a disk, and detects hidden processes running in a computer. Cloud Scanner, a small download, takes up minimal disk space and RAM, for Windows XP, Windows Vista, Windows 7, and Windows Server 2003/ 2008, can be downloaded at http://www.comodo.com/home/download/download.php?prod=cloud-scanner At a cost Comodo also offers 24/7 LivePCSupport, a tech support expert's service, to optimize a computer. Explorer++ Explorer++ is for power users and ...

Special Referral Campaign for Freshers!

namaskara, 2009 passout freshers ge udyoga avakaasha ide.  kelsakke bekagiruva vivara higide. idakke sari honduvaru iddare nanange  varrav22@yahoo.co.in nimma minche kaluhisi. The Process:   1.     Fill in the attached excel-sheet with the details of the candidates that you are referring – This is mandatory!   2.      And not to forget – They should be a B.E./M.Tech/MCA. The branches are – Computer Science, ECE, EEE, IT and they should be a 2009 or later pass out and should have got at least 70% or 7 CGPA   3.      There will be a written test of 2 hour duration consisting of – Quantitative, Problem Solving & Verbal Ability and a Technical test consisting of Java, Data Structures and C   4.      The cut-off date for sending the same is Tuesday COB 23-March-2010   5.      We will review the profiles and call the candidates for the written test scheduled for Saturday       Cheers! Varsha

DOT NET Interview Questions with Answers

When not to use Design Patterns? Do not use design patterns in any of the following situations. • When the software being designed would not change with time. • When the requirements of the source code of the application are unique. If any of the above applies in the current software design, there is no need to apply design patterns in the current design and increase unnecessary complexity in the design. When to use Design Patterns? Design Patterns are particularly useful in one of the following scenarios. • When the software application would change in due course of time. • When the application contains source code that involves object creation and event notification. Benefits of Design Patterns: The following are some of the major advantages of using Design Patterns in software development. • Flexibility • Adaptability to change • Reusability What are Design Patterns? A Design Pattern essentially consists of a p...

Contact Form

Name

Email *

Message *