First year online bits

JNTU SERVER WISHES ONE AND ALL A VERY HAPPY AND PROSPEROUS NEW YEAR

Sunday, May 18, 2008

Visual basic

1. How do you register a component?

Compiling the component, running REGSVR32 MyDLL.dll


2. Name and explain the different compatibility types when creating a COM component

No Compatibility ? New GUID created, references from other components will not workProject Compatibility ? Default for a new component Binary Compatibility ? GUID does not change, references from other components will work


3. Why iss it important to use source control software for source code?

Modification history.Code ownership: Multiple people can not modify the same code at the same time.

4. What two methods are called from the ObjectContext object to inform MTS that the transaction was successful or unsuccessful?

SetComplete and SetAbort.


5. What is the tool used to configure the port range and protocols for DCOM communications?

DCOMCONFIG.EXE


6. What does Option Explicit refer to?

All variables must be declared before use. Their type is not required.


7. What are the different ways to Declare and Instantiate an object in Visual Basic 6?

Dim obj as OBJ.CLASS with eitherSet obj = New OBJ.CLASS orSet obj = CreateObject(OBJ.CLASS?) orSet obj = GetObject( , OBJ.CLASS?)orDim obj as New OBJ.CLASS


8. Name the four different cursor types in ADO and describe them briefly.

The cursor types are listed from least to most resource intensive.Forward Only Fastest, can only move forward in recordset Static Can move to any record in the recordset. Data is static and never changes.KeySet Changes are detectable, records that are deleted by other users are unavailable, and records created by other users are not detectedDynamic ? All changes are visible.


9. Name the four different locking type in ADO and describe them briefly.

LockPessimistic Locks the row once after any edits occur.LockOptimistic Locks the row only when Update is called.LockBatchOptimistic Allows Batch Updates.LockReadOnly Read only. Can not alter the data.


10. Describe Database Connection pooling (relative to MTS )?

This allows MTS to reuse database connections. Database connections are put to sleep as opposed to being created and destroyed and are activated upon request.


11. What are the ADO objects?

Provide a scenario using three of them to return data from a database. Expected answer: Connection Connects to a data source; contains the Errors collectionCommand Executes commands to the data source. Is the only object that can accept parameters for a stored procedure.Recordset The set of data returned from the database.Scenario: There are many possibilities. The most likely is as follows:Dim conn As ADODB.ConnectionDim rs As ADODB.RecordsetDim Cmd As ADODB.Commandconn.ConnectionString = ?CONNECTION STRING?conn.OpenSet Cmd.ActiveConnection = connCmd.CommandText = ?SQL STATEMENT?Set rs = Cmd.ExecuteSet rs.ActiveConnection = Nothingconn.Close

12. Under the ADO Command Object, what collection is responsible for input to stored procedures?

The Parameters collection.

13. What are some benefits of using MTS?

Database Pooling, Transactional operations, Deployment, Security, Remote Execution.


14. What is the benefit of wrapping database calls into MTS transactions?

If database calls are made within the context of a transaction, aborting the transaction will undo and changes that occur within that transaction. This removes the possibility of stranded, or partial data.


15. Describe and In Process vs. Out of Process component. Which is faster?

An in-process component is implemented as a DLL, and runs in the same process space as its client app, enabling the most efficient communication between client and component.Each client app that uses the component starts a new instance of it.An out of process component is implemented as an EXE, and unlike a dll, runs in its own process space. As a result, exe’s are slower then dll’s because communications between client and component must be marshalled across process boundaries. A single instance of an out of process component can service many clients.

Interview Questions

INTERVIEW QUESTIONS
Hi friends these are the interview Questions of TCS conducted in the KAKINADA JNTU university Download them if you want to prepare for any interview.
Kakinada TCS Questions
Hi friends here is the Some interview questions related to java and JDBC so just go through and respond me howz that.
JAVA QUESTIONS

C and C++ Questions

    C & C++ Interview Questions
  • What is the output of printf("%d")
  • What will happen if I say delete this
  • What is Dangling pointer?
  • Difference between "C structure" and "C++ structure".
  • Diffrence between a "assignment operator" and a "copy constructor"
  • What is the difference between "overloading" and "overridding"?
  • Explain the need for "Virtual Destructor".
  • Can we have "Virtual Constructors"?
  • What are the different types of polymorphism?
  • What are Virtual Functions? How to implement virtual functions in "C"
  • What are the different types of Storage classes?
  • What is Namespace?
  • What are the types of STL containers?.
  • Is there any difference between a messageand method?
  • If I ask you to write 'VI' editor in C++ - How you'll proceed?
  • Difference between char name[] = “prashant n mhatre”; and char *name = “prashant n mhatre”;
  • Should we use global variables?
  • Parsing HTML or XML document with C++
  • What is 'self assignment'?
  • Difference between how virtual and non-virtual member functions are called
  • Finding shortest path aka Dijkstra's algorithm and backtracking
  • Doing permutations and combinations in C++
  • Difference between "vector" and "array"?
  • How to write a program such that it will delete itself after exectution?
  • Can we generate a C++ source code from the binary file?
  • What are inline functions?
  • Talk sometiming about profiling?
  • How many lines of code you have written for a single program?
  • What is "strstream" ?
  • How to write Multithreaded applications using C++?
  • Explain "passing by value", "passing by pointer" and "passing by reference"
  • Write any small program that will compile in "C" but not in "C++"
  • Have you heard of "mutable" keyword?
  • What is a "RTTI"?
  • Is there something that I can do in C and not in C++?
  • Why preincrement operator is faster than postincrement?
  • What is the difference between "calloc" and "malloc"?
  • What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
  • What is Memory Alignment?
  • Explain working of printf.
  • Difference between "printf" and "sprintf".
  • What is "map" in STL?
  • When shall I use Multiple Inheritance?
  • What are the techniques you use for debugging?
  • How to reduce a final size of executable?
  • Give 2 examples of a code optimization.

Java Interview Questions

    JAVA Interview Questions
  • Meaning - Abstract classes, abstract methods
  • How do you force Garbage Collector in Java?
  • Difference - Java,C++
  • Difference between == and equals method
  • Difference - Interface and Class
  • Explain Java security model
  • Explain working of Java Virtual Machine (JVM)
  • Difference : Java Beans, Servlets
  • Difference : AWT, Swing
  • Disadvantages of Java
  • difference between this() and super()
  • How does exeception handling mechanism work in Java?
  • When 'finally' block gets executed.
  • What is BYTE Code ?
  • Can unreachable object become reachable again?
  • What gives java it's "write once and run anywhere" nature?
  • Does Java have "goto"?
  • Difference - Preemptive Scheduling and Time Slicing
  • Checked and UnChecked Exception Difference
  • What is the meaning of "final" keyword?
  • Can I create final executable from Java?
  • Explain Garbage collection mechanism in Java
  • Why Java is not 100% pure object oriented language?
  • What are interfaces? or How to support multiple inhertance in Java?
  • How to use C++ code in Java Program?
  • Difference between "APPLET" and "APPLICATION"
  • Types of inner classes
  • Explain the difference between HashMap and HashTable?
  • Difference - Iterators in C++ and iterators in Java
  • What's meant by keyword 'static'
  • Different - public, private, protected and package level access
  • How would you strip HTML tags using String replaceAll() method.
  • Creating custom exceptions
  • What is super()
  • String and String Buffer - Which one should we prefer?
  • Adapter Class
  • Vector, Hashtables, Lists, Enumerations in Java
  • Serialization in Java and Marshelling
  • What are the types of JDBC drivers? Which would you prefer?
  • How do you establish connection to database using JDBC?
  • Convert Oracle CLOB to Java String
  • Convert Java String to Oracle CLOB
  • Difference: createStatement, prepareStatement and prepareCall
  • What is Transaction? How it is managed with JDBC
  • How can we make call to a stored procedure from JDBC ?
  • Dirty read and 2 phase commits
  • How do we retrieve table META Data ?

Visual Basic interview Questions

Visual Basic Interview Questions

  • 3 main differences between flexgrid control and dbgrid control
  • ActiveX and Types of ActiveX Components in VB
  • Advantage of ActiveX Dll over Active Exe
  • Advantages of disconnected recordsets
  • Benefit of wrapping database calls into MTS transactions
  • Benefits of using MTS
  • Can database schema be changed with DAO, RDO or ADO?
  • Can you create a tabletype of recordset in Jet - connected ODBC database engine?
  • Constructors and distructors
  • Controls which do not have events
  • Default property of datacontrol
  • Define the scope of Public, Private, Friend procedures?
  • Describe Database Connection pooling relative to MTS
  • Describe: In of Process vs. Out of Process component. Which is faster?
  • Difference between a function and a subroutine, Dynaset and Snapshot,early and late binding, image and picture controls,Linked Object and Embedded Object,listbox and combo box,Listindex and Tab index, modal and moduless window, Object and Class,Query unload and unload in form, Declaration and Instantiation an object?
  • Draw and explain Sequence Modal of DAO
  • How can objects on different threads communicate with one another?
  • How can you force new objects to be created on new threads?
  • How does a DCOM component know where to instantiate itself?
  • How to register a component?
  • How to set a shortcut key for label?
  • Kind of components can be used as DCOM servers
  • Name of the control used to call a windows application
  • Name the four different cursor and locking types in ADO and describe them briefly
  • Need of zorder method, no of controls in form, Property used to add a menus at runtime, Property used to count number of items in a combobox,resize a label control according to your caption.
  • Return value of callback function, The need of tabindex property
  • Thread pool and management of threads within a thread pool
  • To set the command button for ESC, Which property needs to be changed?
  • Type Library and what is it's purpose?
  • Types of system controls, container objects, combo box
  • Under the ADO Command Object, what collection is responsible for input to stored procedures?
  • VB and Object Oriented Programming
  • What are the ADO objects? Explain them.
  • What are the different compatibility types when we create a COM component?
  • What do ByVal and ByRef mean and which is the default?
  • What does Option Explicit refer to?
  • What does the Implements statement do?
  • What is OLE and DDE? Explain.
  • What is the difference between Msgbox Statement and MsgboxQ function?
  • What keyword is associated with raising system level events in VB?
  • What methods are called from the ObjectContext object to inform MTS that the transaction was successful or unsuccessful?
  • What types of data access have you used.
  • What was introduced to Visual Basic to allow the use of Callback Functions?
  • Which controls can not be placed in MDI?
  • Which controls have refresh method, clear method
  • Which Property is used to compress a image in image control?
  • Which property of menu cannot be set at run time?
  • Which property of textbox cannot be changed at runtime and What's the maximum size of a textbox?
  • Which tool is used to configure the port range and protocols for DCOM communications?
Download EAMCET 2008 Key

 


 

Transform your older version of Windows XP into Windows Vista just click here

Xp to vista

Xp to vista
Just a preview

download link

Hi friends a small reuest from my side please when you are downloading all it bits please be careful that u have to keep all the files like that only and you have to access from that links only donot move one file to another place it will create some linking problem so be careful while opening files