Category Archives: Technical
We can call JSP page from JavaScript using the property window.location.href. Example: Hello.html: <html> <head> <title>Add Faulty Phones</title> <script type=”text/javascript”> function changeLocation() { window.location.href =’hello.jsp?name=John’; } </script> </head> <body> <form method=get> <INPUT TYPE=BUTTON ONCLICK=”changeLocation()” VALUE=”Click”> </form> </html> Note: “window.location.href = ‘download.jsp’?name=john;” where download.jsp is jsp file, name is parameter name and john is parameter value. hello.jsp: <center>Hello <%=requset.getParameter(“name”)%> </center>
1. What is ORACLE? Oracle is a Relational Database Management System (RDBMS) which is used widely for business applications. 2. What is SGA? The System Global Area (SGA) is a shared memory region allocated by ORACLE that contains data and control information for one ORACLE instance. 3. What is the function of Checkpoint (CKPT)? The Checkpoint (CKPT) process is responsible for signaling DBWR at checkpoints and updating all the data files and control files of the database. The CKPT is also useful to get the point in time from where to begin the recovery in … More ->
Tagged advantages of using cursors with FOR LOOPS, Bind Variables, Can we write INSTEAD OF triggers on tables, firing sequence for a trigger on a table, How to create Bind Variables, Oracle - Frequently Asked Questions, Oracle FAQ, Oracle Interview questions, PL/SQL Frequently Asked Questions, PL/SQL Interview questions, RAISE NO_DATA_FOUND, Redo Log Buffers, Shared Pool, use of NO WAIT option with SELECT.... FOR UPDATE clause, use of SHOW ERRORS, What are the components of SGA?, What is ORACLE?, What is SGA?, What is SQL*PLUS, What is the function of Checkpoint (CKPT)?
1. What is meant by the .NET framework? The Microsoft .NET Framework is a standards-based, language independent application development and execution environment. It consists of a runtime environment called the CLR (common language runtime) and a set of libraries called .NET Class Libraries to enhance programmers’ efficiency and productivity. 2. What are the different types of JIT compilers? JIT compiler is a part of .NET runtime execution environment. There are three types of JIT compilers, pre-JIT, Econo-JIT and Normal-JIT. 3. … More ->
Tagged .NET, .NET FAQ, .NET framework, .NET Frequently Asked Questions, CLR, What are namespaces in .net, What are the contents of an assembly?, What are the different types of JIT compilers in .net, What is .NET Remoting?, What is a strong name of an assembly in .net, What is an Assembly in .NET Framework?, What is CLR in .net, What is Code Access Security in .net, What is Common Language Specification?, What is CTS?, What is Garbage Collection .net, What is Managed Code in .net, What is meant by the .NET framework?, What is Microsoft Intermediate Language (MSIL)?, What is Reflection in .NET?
Table of Contents: How do I install WebSphere Application Server when logged on to a Windows NT domain? While starting WS Admin Server from control panel, the error comes which says “Service Code 10 error, unable to start the service”. What is it and how to solve it? For Developing Beans and Servlets what changes should I make in my System Classpath? While Deploying a bean, WebSphere provide 2 options “Deploy only” and “Deploy and Workload Manage”. What are these … More ->
Tagged ClassCastException in Java, Deploy and Workload Manage, Deploy only, How to connect to oracle database, How to look up DataSource, How to monitor the performance of the WebSphere, Is it possible to precompile JSPs for WebSphere Application Server, NoClassDefFoundError, Service Code 10 error, unable to start the service, Veriying EJBs, Websphere 3.5 Frequently Asked Questions, WebSphere Application Server installation, Websphere Interview Questions, Where can I find my System.out.println() or System.err.println() statements written in my bean
1. What is a reentrant program? How will you make a program Reentrant? A reentrant program, while being executed resides in the common virtual area so that one copy of it may be shared among all callers. Use RENT compiler option. 2. What is the difference between a 01 level and 77 level? 01 level can have sublevels from 02 to 49. 77 cannot have sublevel. 3. What are the few advantages of VS COBOL II over OS/VS COBOL? The … More ->
Tagged advantages of VS COBOL II over OS/VS COBOL, BY REFERENCE identifier, COBOL Frequently Asked Questions, COBOL Interview Questions, COMMON attribute usage, Default, Difference between a 01 level and 77 level, Difference between a binary search and a sequential search, Difference between an internal and an external sort, Difference between next sentence and continue, Difference between Structured Cobol Programming and Object Oriented COBOL programming, DISPLAY WS-TABLE, LOCAL-STORAGE SECTION, Number of dimensions are allowed for a table, ON SIZE ERROR phrase, Passing BY CONTENT, Passing BY REFERENCE, Passing BY VALUE, REDEFINES clause, Reentrant program, SEARCH verb, Steps for creating a COBOL program executable, Structure of a COBOL subroutine, TEST BEFORE or TEST AFTER for a PERFORM statement, Use of Declaratives in COBOL, Working-storage variables, WS-TABLE
Switch to our mobile site