Question
What is a resident program?

Answers

A program pr map loaded into the CICS nucleus so that is kept permanently in main storage and not deleted when CICS goes " Short on Storage."   Your Comment




More Software Questions..
What is the inputsplit in map reduce software?

What is software configuration management?

What Is Java Api For Xml-based Rpc (jax-rpc)?

How can you implement fine-grained auditing?

What is IBM’s simple explanation for Big Data’s four critical features?

What is static synchronized method in JDBC API? Give an example?

What does the NULLIF function do?

What happens if a start method is not invoked and the run method is directly invoked?

Should we override finalize method

what is the difference between mysql_fetch_array and mysql_fetch_object?

How will XML affect my document links?

Why to use Style Sheets?

What are Filters in MVC?

Can you explain Application layer in OSI model?

How to define new testplan attributes?

What are the minimum system requirements to run Photoshop? Is it possible to run Photoshop over linux?

Which oracle package is used to manage the oracle lock management services?

What is Latch Up? Explain Latch Up with cross section of a CMOS Inverter. How do you avoid Latch Up?

What is marker interface?

What types of partitioning are there for BW?



Search
Can you Answer!!
  • Q Why do we create Profit Centers? What are the key components of Profit Center
  • Q Why can series motor not be started on no-load?
  • Q How can you create your custom interceptor in Struts 2
  • Q Critically evaluate Descartes concept of ‘substance and attribute’
  • Q What is the brand name for citalopram?
  • Q How the Internet of Things (IoT) makes a difference to the businesses?
  • Q What about a parallel port zip drive
  • Q Explain DRY in Rails?
  • Q Program to find the sum of digits of a given number until the sum becomes a single digit.
  • Q What is mea?
  • Q What will be printed out if you attempt to compile and run the following code? int i=9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); } 1) default 2) default, zero 3) error default clause not defined 4) no output displayed