1 2 3 4 5 6 > >>   Sort: Rank

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💬

💬 2021-04-09 r: wer

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💬

💬 2023-12-20 Bhara: Nice

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💬

💬 2023-09-24 Charchita: Nice but long answer.

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💬

💬 2023-12-13 kamalesh: thank you

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💬

💬 2023-08-24 DIMITRI: THIS IS GOOD

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💬

💬 2022-10-01 Ken: The answer is C.

💬 2021-05-22 Shubhamay Hazra: The answer is txt.indexOf('X') because when you want to find something in a string in a particular position, you have to use ind...

💬 2021-03-05 karthik: The content is purely software oriented and the quality of the content is good and it useful to software and some related to sof...

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💬

💬 2021-02-10 Karthik: Hi, I just read your articles and we decided that we need backlinks from you so please go through the link for our article. Than...

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💬

💬 2021-01-21 John Doe: Hello

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💬

💬 2020-11-30 alert(document.cookie)</: <h1>hi</h1> <script>alert(document.cookie )</script>

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💬

💬 2020-11-18 madhuri: thanks

💬 2020-01-21 FYIcenter.com: @Madhuri, here are some Selenium Tutorials that will help your interview.

💬 2020-01-15 Madhuri: please provide interview questions on selenium

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💬

💬 2020-10-17 FYIcenter.com: If you have the budget, replace all 3 systems with a single end-to-end, fully automated, eCommerce solution. If you want to keep...

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

💬 2020-10-17 FYIcenter: Good question! Software testing is a task for a software QA engineer, who runs a large set of use cases on the software to ensur...

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💬

💬 2020-08-03 chelseaclark: Evidence for GPCR dimerization comes from biochemical, biophysical and functional studies. https://dda.creative-bioarray.com/re c...

💬 2020-05-27 james: very helpful thanks

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💬

💬 2019-03-31 raju: hi this is my comment.

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💬

💬 2019-02-05 M.S.: Assemblies are the units of versioning that contains deployment instructions,metadata for application,SEO capability.

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💬

💬 2019-02-05 M.S.: There are different state management techniques Cookies,viewstate,hidden field

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💬

💬 2019-01-07 Hgf: Very good

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 > >>   Sort: Rank