1 2 3 4 5 6 > >>

How to set a cookie with the contents of a textbox ?
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolons, commas, or spaces. You should use the handy "escape()" function to encode the values, and "unescape()" to retrieve them. //Sets cookie of current value for myTextBox function TextBoxOnchange() { va...
2024-03-11, 5410👍, 4💬

Passing Control from One JSP Page to Another
How do you pass control from one JSP page to another? Use the following ways to pass control of a request from one servlet to another or one jsp to another. The RequestDispatcher object's forward method to pass the control. The response.sendRedirect method
2024-02-05, 6011👍, 2💬

How can JavaScript make a Web site easier to use? That is, are there certain JavaScript techniques that make it easier for
How can JavaScript make a Web site easier to use? That is, are there certain JavaScript techniques that make it easier for people to use a Web site? JavaScript's greatest potential gift to a Web site is that scripts can make the page more immediately interactive, that is, interactive without having ...
2024-01-21, 6120👍, 3💬

How many ways are there to initialize an int with a constant?
How many ways are there to initialize an int with a constant? Two. There are two formats for initializers in C++ as shown in the example that follows. The first format uses the traditional C notation. The second format uses constructor notation. int foo = 123; int bar (123);
2023-12-13, 4730👍, 1💬

Please add more q&A
Hi, please add interview questions and answers for mulesoft technology.
2023-10-24, 1849👍, 3💬

Perl uses single or double quotes to surround a zero or more characters. Are the single(' ') or double quotes (" ") identical?
Perl uses single or double quotes to surround a zero or more characters. Are the single(' ') or double quotes (" ") identical? They are not identical. There are several differences between using single quotes and double quotes for strings. 1. The double-quoted string will perform variable interpolat...
2023-09-13, 2816👍, 1💬

Wha is the output from System.out.println("Hello"+null);?
Wha is the output from System.out.println("Hello"+nul l);?Hellonull
2023-08-24, 7775👍, 1💬

How do you locate the first X in a string txt?
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf('X'); D) txt.countTo('X');
2022-10-19, 15256👍, 5💬

What's a HashTable
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array, but how many times you know the real value of index. Hashtable provides way of accessing the index using a user identified KEY value, thus removing the INDEX problem.
2021-03-07, 8126👍, 0💬

Oracle PL/SQL Questions
1. What is normalization. 2. Difference between procedure and functions. 3. Oracle 9i Vs 10g. 4. how to improve the performance of a query. 5. %type vs %rowtype. 6. regression testing. 7. deleting the duplicate records without using rowid in oracle. 8. Row chaining. 9. types of cursors.
2021-02-10, 7777👍, 1💬

How can I implement a variable field width with printf?
How can I implement a variable field width with printf? That is, instead of something like %8d, I want the width to be specified at run time. printf("%*d", width, x) will do just what you want. The asterisk in the format specifier indicates that an int value from the argument list will be used for t...
2021-01-21, 6421👍, 1💬

Can JavaScript steal text from your clipboard?
Can JavaScript steal text from your clipboard? It is true, text you last copied for pasting (copy & paste) can be stolen when you visit web sites using a combination of JavaScript and ASP (or PHP, or CGI) to write your possible sensitive data to a database on another server.
2020-11-30, 8519👍, 1💬

Selenium WebDriver Interview Question
Selenium WebDriver Interview question Selenium Automates Browser.Its open source tool and integrated with many open source framework such as Junit,testng,sikuli and AutoLt.
2020-11-18, 2874👍, 3💬

Interview question - Order Process Automation
An ecommerce transaction starts on an instance of SAP Hybris at the frontend (browser-based). The order then flows through a bespoke SQL Server based Data Hub, into MS Dynamics 365 (F&O), where the order orchestrated. The flow also includes several batch jobs between the order placement and ...
2020-10-17, 1242👍, 1💬

Software testing vs. debugging
The difference between testing and debugging is...
2020-10-17, 1440👍, 1💬

What is wrong with this initialization?
What's wrong with this initialization? char *p = malloc(10); My compiler is complaining about an ``invalid initializer'', or something. Is the declaration of a static or non-local variable? Function calls are allowed in initializers only for automatic variables (that is, for local, non-static variab...
2020-08-03, 6269👍, 2💬

Interview question
Have you ever worked without salary?
2020-02-20, 1631👍, 0💬

What is Rational Suite?
I found your website in a Google search, after having visited another link in that search, IBM, which had an entire website devoted to Rational Suite. Essentially, all I wanted to know was who the vendor/developer of this software was and what the software did and hopefully get some detailed descrip...
2019-07-20, 1717👍, 0💬

What is the difference between Session State and ViewState?
What is the difference between Session State and ViewState? ViewState is specific to a page in a session. Session state refers to user specific data that can be accessed across all pages in the web application.
2019-03-31, 11357👍, 4💬

What do you know about .NET assemblies?
What do you know about .NET assemblies? Assemblies are the smallest units of versioning and deployment in the .NET application. Assemblies are also the building blocks for programs such as Web services, Windows services, serviced components, and .NET remoting applications.
2019-02-05, 3164👍, 1💬

How does ASP.NET maintain state in between subsequent request
How does ASP.NET maintain state in between subsequent request ? Refer caching chapter.
2019-02-05, 10508👍, 1💬

Oracle ASM questions
Please help to answer below Oracle ASM questions: Where you will free disk details in ASM? What status would be for Free disks? What is Rebalance operations? How you will check rebalance operations progress? how to increase performance of Rebalance operations? Mandatory BG process in ASM How will ch...
2019-01-20, 1843👍, 0💬

Is JSP technology extensible?
Is JSP technology extensible? YES. JSP technology is extensible through the development of custom actions, or tags, which are encapsulated in tag libraries.
2019-01-07, 4520👍, 1💬

interview.FYIcenter.com Links
Other Resources: Software QA Resources Developer Resources DBA Resources Windows Tutorials Java JAR Files DLL Files File Extensions Security Certificates Regular Expression Link Directories Interview Q & A Biotech Resources Cell Phone Resources Travel Resources Frequently Asked Questions FYI...
2018-12-21, 2082👍, 0💬

1 2 3 4 5 6 > >>