InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 51. |
Can You Give A Practical Example Of A Recursive Algorithm? |
|
Answer» There are LOTS of places where recursive algorithm FITS e.g. algorithm RELATED to binary and linked list. Couple of examples of recursive algorithm is reversing String and calculating Fibonacci series. Other examples INCLUDE reversing linked list, TREE traversal, and quick sort algorithm. There are lots of places where recursive algorithm fits e.g. algorithm related to binary and linked list. Couple of examples of recursive algorithm is reversing String and calculating Fibonacci series. Other examples include reversing linked list, tree traversal, and quick sort algorithm. |
|
| 52. |
Explain What Is Uniform Data Access Integration? |
Answer»
|
|
| 53. |
What Is Test-driven Development? |
|
Answer» Test driven is one of the popular development methodology in which tests are written before writing any function code. In fact, test drives the structure of your PROGRAM. Purists never wrote a single line of application code without writing test for that. It greatly IMPROVE code quality and OFTEN attributed as a quality of ROCKSTAR developers. Test driven is one of the popular development methodology in which tests are written before writing any function code. In fact, test drives the structure of your program. Purists never wrote a single line of application code without writing test for that. It greatly improve code quality and often attributed as a quality of rockstar developers. |
|
| 54. |
How Snmp Agent Is Associated With Data Integrator? |
Answer»
|
|
| 55. |
How Do You Find Large Files In Unix E.g. More Than 1gb? |
|
Answer» You can easily FIND big FILES by using find command because it provides option to search files BASED upon there size. Use this if your file system is FULL and your Java process is crashing with no more SPACE. This command will list all files which is more than 1GB. You can tweak the size easily e.g. to find all files with more than 100 MB just use +100M. You can easily find big files by using find command because it provides option to search files based upon there size. Use this if your file system is full and your Java process is crashing with no more space. This command will list all files which is more than 1GB. You can tweak the size easily e.g. to find all files with more than 100 MB just use +100M. |
|
| 56. |
Explain About Data Integrator Metadata Reports? |
|
Answer» Browser-based analysis and reporting CAPABILITIES are provided by Metadata REPORTS. The DI Metadata Reports are generated on metadata that associates with
Three MODULES are provided by Metadata Reports. They are
Browser-based analysis and reporting capabilities are provided by Metadata reports. The DI Metadata Reports are generated on metadata that associates with Three modules are provided by Metadata Reports. They are |
|
| 57. |
What Is Push Back From Business Users? |
|
Answer» At many times the biggest issue with business users is their time availability. But, if you have a good Project Manager and Leadership, there should be COLLABORATION between them and your business users and their management to ensure the time is available, this should be done well before the testing period begins. The Project Manager should also be able to define the length of time they would be required to spend testing. As a Business Analyst, I realize the business user's time is very limited. Throughout the requirements lifecycle I TRY to provide mockups and/or prototypes of everything, get FEEDBACK, and make CHANGES where necessary so that when the business users begin testing it isn't so time consuming or the first time they are SEEING the changes. Developing a Test Plan is required to set expectations at the time development begins. At many times the biggest issue with business users is their time availability. But, if you have a good Project Manager and Leadership, there should be collaboration between them and your business users and their management to ensure the time is available, this should be done well before the testing period begins. The Project Manager should also be able to define the length of time they would be required to spend testing. As a Business Analyst, I realize the business user's time is very limited. Throughout the requirements lifecycle I try to provide mockups and/or prototypes of everything, get feedback, and make changes where necessary so that when the business users begin testing it isn't so time consuming or the first time they are seeing the changes. Developing a Test Plan is required to set expectations at the time development begins. |
|
| 58. |
Explain About Pivot - Columns To Rows? |
Answer»
|
|
| 59. |
What Is A Regular Expression? |
|
Answer» Regular expression is a WAY to perform pattern matching on text data. It's very POWERFUL tool to find something e.g. some character in a long string e.g. finding if a book contains some word or not. ALMOST all major programming LANGUAGE supports regular expression but Perl has been renowned for its enormous capability. Java also supports Perl like regular expression using java.util.regex package. You can use regular expression to check if a email is valid or not, if a phone number is valid, or if a zip CODE is valid, or even a SSN number is valid or not. One of the simplest example of regular expression is to check if a String is number or not. Regular expression is a way to perform pattern matching on text data. It's very powerful tool to find something e.g. some character in a long string e.g. finding if a book contains some word or not. Almost all major programming language supports regular expression but Perl has been renowned for its enormous capability. Java also supports Perl like regular expression using java.util.regex package. You can use regular expression to check if a email is valid or not, if a phone number is valid, or if a zip code is valid, or even a SSN number is valid or not. One of the simplest example of regular expression is to check if a String is number or not. |
|
| 60. |
What Is Hierarchy Flattening? |
Answer»
|
|
| 61. |
What Is The Open Closed Design Principle? |
|
Answer» Open closed is another principle from SOLID, which asserts that a SYSTEM should be open for EXTENSION but close for MODIFICATION. Which means if a NEW functionality is required in a stable system then your tried and tested code should not be touched and new functionality should be provided by adding new classes only. Open closed is another principle from SOLID, which asserts that a system should be open for extension but close for modification. Which means if a new functionality is required in a stable system then your tried and tested code should not be touched and new functionality should be provided by adding new classes only. |
|
| 62. |
What Is Shell Script? |
|
Answer» shell script is set of shell commands with some programming constructs e.g. if and for LOOP, which allow you to automate some repetitive task. For example: you can write shell script to daily CLEANUP of logs files, for backing up data for HISTORICAL use and for other housekeeping jobs, RELEASES and monitoring. shell script is set of shell commands with some programming constructs e.g. if and for loop, which allow you to automate some repetitive task. For example: you can write shell script to daily cleanup of logs files, for backing up data for historical use and for other housekeeping jobs, releases and monitoring. |
|
| 63. |
What Is History Preserving? |
Answer»
|
|
| 64. |
What Is Uml Modeling? |
|
Answer» The UNIFIED Modeling Language (UML) is a general-purpose, DEVELOPMENTAL, modeling language in the field of software engineering, that is intended to provide a STANDARD way to visualize the design of a system. The Unified Modeling Language (UML) is a general-purpose, developmental, modeling language in the field of software engineering, that is intended to provide a standard way to visualize the design of a system. |
|
| 65. |
What Is Sdlc Methodologies? |
|
Answer» To manage this level of complexity, a NUMBER of SDLC models or METHODOLOGIES have been created, such as "waterfall"; "spiral"; "Agile software DEVELOPMENT"; "RAPID prototyping"; "incremental"; and "synchronize and stabilize". SDLC can be described along a SPECTRUM of agile to iterative to sequential. To manage this level of complexity, a number of SDLC models or methodologies have been created, such as "waterfall"; "spiral"; "Agile software development"; "rapid prototyping"; "incremental"; and "synchronize and stabilize". SDLC can be described along a spectrum of agile to iterative to sequential. |
|
| 66. |
Explain About Data Integration Hierarchy? |
|
Answer» The DI hierarchy is as follows:
The DI hierarchy is as follows: |
|
| 67. |
What Is Use Case And Test Case? |
|
Answer» Use Case Testing is a functional black BOX testing technique that helps TESTERS to identify TEST scenarios that exercise the WHOLE system on each transaction basis from start to FINISH. Use Case Testing is a functional black box testing technique that helps testers to identify test scenarios that exercise the whole system on each transaction basis from start to finish. |
|
| 68. |
Describe About Physical Data Integration? |
Answer»
|
|
| 69. |
Tell Me What Is Risk Management? |
|
Answer» The identification, analysis, assessment, control, and avoidance, minimization, or elimination of unacceptable risks. An organization may use risk ASSUMPTION, risk avoidance, risk retention, risk TRANSFER, or any other strategy (or combination of STRATEGIES) in PROPER management of FUTURE events. The identification, analysis, assessment, control, and avoidance, minimization, or elimination of unacceptable risks. An organization may use risk assumption, risk avoidance, risk retention, risk transfer, or any other strategy (or combination of strategies) in proper management of future events. |
|
| 70. |
What Are The Benefits Of Data Integration? |
|
Answer» Following are the benefits of data integration:
Following are the benefits of data integration: |
|
| 71. |
What Is Business Plan? |
|
Answer» A business plan is a FORMAL statement of business goals, reasons they are attainable, and plans for REACHING them. It may also CONTAIN background information about the ORGANIZATION or TEAM attempting to reach those goals. A business plan is a formal statement of business goals, reasons they are attainable, and plans for reaching them. It may also contain background information about the organization or team attempting to reach those goals. |
|
| 72. |
Explain What Is Data Integration? |
Answer»
The sub areas of data integration are:
The sub areas of data integration are: |
|
| 73. |
Tell Us What Is Black Box Testing? |
|
Answer» Black-box testing is a method of software testing that EXAMINES the functionality of an application without PEERING into its internal structures or workings. This method of TEST can be applied to virtually every LEVEL of software testing: unit, integration, system and acceptance. Black-box testing is a method of software testing that examines the functionality of an application without peering into its internal structures or workings. This method of test can be applied to virtually every level of software testing: unit, integration, system and acceptance. |
|
| 74. |
Do You Know What Is White Box Testing? |
|
Answer» White-box TESTING (also known as CLEAR box testing, glass box testing, transparent box testing, and STRUCTURAL testing) is a method of testing software that tests internal structures or workings of an APPLICATION, as opposed to its functionality (i.e. black-box testing). White-box testing (also known as clear box testing, glass box testing, transparent box testing, and structural testing) is a method of testing software that tests internal structures or workings of an application, as opposed to its functionality (i.e. black-box testing). |
|