i
Infosys
Filter interviews by
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
Filenet upgradation involves planning, testing, and implementing new versions of the Filenet software.
Plan the upgradation process by assessing system requirements and compatibility with existing infrastructure.
Backup all data and configurations to prevent data loss during the upgradation.
Test the new version in a controlled environment to ensure compatibility and functionality.
Implement the upgradation during a schedu...
Data migration in Filenet involves exporting data from one system and importing it into another while ensuring data integrity.
Plan the migration process including identifying data to be migrated, mapping data fields, and setting up migration tools.
Export data from the source system using Filenet export tools or APIs.
Transform the data if necessary to match the target system's data structure.
Import the data into the tar...
I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.
Filenet is an enterprise content management system that helps organizations manage and store their documents and digital assets.
Filenet allows users to capture, store, manage, and retrieve documents and content efficiently.
It provides features like version control, workflow management, and security controls.
Filenet is commonly used in industries like finance, healthcare, and government for managing large volumes of doc
IBM Content Navigator is a web-based content management system that allows users to access, manage, and collaborate on content stored in IBM FileNet.
Web-based interface for accessing and managing content
Allows collaboration on content
Integrates with IBM FileNet for document management
Provides customizable workflows and search capabilities
Case Manager is a software application used for managing cases, documents, and workflows in an organization.
Case Manager helps in organizing and tracking cases, documents, and tasks related to a specific project or process.
It allows users to collaborate, share information, and automate processes to improve efficiency.
Examples of Case Manager software include IBM Case Manager, Pega Case Manager, and Salesforce Service C
Filenet administrators are responsible for managing and maintaining the Filenet system, ensuring its smooth operation.
Responsible for installing, configuring, and upgrading Filenet software
Monitoring system performance and troubleshooting issues
Managing user access and permissions
Implementing backup and recovery procedures
Collaborating with other IT teams to integrate Filenet with other systems
What people are saying about Infosys
I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.
There are three types of business rules in ServiceNow: client scripts, server scripts, and UI policies.
Client scripts run on the client side and are used to perform actions on form fields or execute scripts when a form is loaded, saved, or deleted.
Server scripts run on the server side and are used to perform actions on records when they are inserted, updated, or deleted.
UI policies are used to set mandatory, read-only,...
To add approval in flow designers, use the 'Approval' activity and configure the approval settings.
Drag and drop the 'Approval' activity onto the flow designer canvas
Configure the approval settings such as approvers, conditions, and notifications
Connect the 'Approval' activity to the relevant steps in the flow
Test the flow to ensure the approval process works correctly
UI policy controls the behavior of fields on a form, while data policy controls the data that can be entered into fields.
UI policy is used to set mandatory, read-only, or visible conditions on form fields
Data policy is used to enforce data validation rules on form fields
UI policy is client-side, while data policy is server-side
Example: UI policy can make a field read-only when a certain condition is met, while data pol...
Client side scripts run on the user's browser, while server side scripts run on the server.
Client side scripts are executed on the user's browser, providing immediate feedback without needing to communicate with the server.
Server side scripts are executed on the server, allowing for secure processing of sensitive data and operations.
Client side scripts are written in languages like JavaScript, while server side scripts
Code to display last 10 incidents in background script
Query incident table to get last 10 records
Use GlideRecord to fetch incident records
Sort records by created date in descending order
First round > General aptitude and versant test.
VDI can be managed by monitoring performance, updating software, optimizing resources, and ensuring security.
Monitor performance regularly to identify any issues or bottlenecks.
Update VDI software and patches to ensure system stability and security.
Optimize resources by balancing workloads and adjusting configurations as needed.
Ensure security measures are in place, such as encryption, access controls, and regular back...
The output of click activity is the action of clicking on a specified element on the screen.
The output is the successful click on the specified element.
It triggers the action associated with the clicked element.
The output can be a confirmation message or a change in the UI.
If the click activity fails, an error message may be generated.
Document understanding is the process of extracting key information from documents using AI and machine learning.
It involves analyzing and extracting data from various types of documents such as invoices, receipts, contracts, and forms.
Document understanding helps automate data entry, improve accuracy, and streamline business processes.
It uses techniques like optical character recognition (OCR), natural language proces...
REFramework is a framework in UiPath that provides a template for building scalable and robust automation solutions.
REFramework stands for Robotic Enterprise Framework
It follows a state machine design pattern with 5 main states: Init, Get Transaction Data, Process Transaction, End Process, and Exception Handling
Advantages include reusability of components, centralized exception handling, and logging capabilities
It allo...
Document Understanding is a process of extracting data from unstructured documents using AI and machine learning.
Document Understanding involves using AI and machine learning to extract data from unstructured documents such as invoices, receipts, and forms.
It includes tasks like document classification, data extraction, and validation of extracted data.
Document Understanding can be achieved through technologies like OC...
Display the count of incident records based on the category
I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.
Attended bots require human intervention, while unattended bots can run autonomously.
Attended bots require human supervision and interaction during execution.
Unattended bots can run autonomously without human intervention.
Attended bots are typically used for tasks that require human decision-making, while unattended bots are used for repetitive tasks.
Examples: Attended bot - a bot that assists a customer service repres...
REFramework is a Robotic Enterprise Framework for automating processes in UiPath.
REFramework is a template provided by UiPath for building scalable and maintainable automation projects.
It includes components like Init, Process, End Process, and Exception Handling.
It follows a state machine design pattern to manage the flow of the automation.
REFramework helps in structuring the automation project and handling exceptions...
I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.
Developed a service portal for IT ticketing system
Created custom widgets for user-friendly interface
Integrated with ServiceNow API for ticket management
Implemented role-based access control for different user types
Catalog item is a predefined item in the service catalog, while record producer allows users to create custom records.
Catalog item is predefined and created by admins, while record producer allows users to create custom records
Catalog items are used to request services or products, record producers are used to create records in tables
Catalog items have predefined variables and workflows, record producers allow users to
Macros are automated scripts that can be used to perform repetitive tasks in Servicenow.
Macros in Servicenow are used to automate tasks and reduce manual effort.
They can be used to update multiple records at once, send notifications, or perform calculations.
Macros can be triggered manually or automatically based on certain conditions.
Example: Creating a macro to automatically close all resolved incidents in Servicenow.
Use GlideUser class to get logged in user details in a form
Use GlideUser class to get the current user's details
Access user details like name, email, roles, etc. using GlideUser methods
Example: var user = gs.getUser(); var userName = user.getName();
Yes, JavaScript is a synchronous language.
JavaScript is single-threaded, meaning it can only execute one piece of code at a time.
It follows a top-down execution flow, where each line of code is executed in order.
Asynchronous behavior can be achieved using callbacks, promises, and async/await.
Example: setTimeout function in JavaScript delays the execution of a function.
Example: Fetch API in JavaScript allows making asyn
Technology Analyst
56.2k
salaries
| ₹3 L/yr - ₹11 L/yr |
Senior Systems Engineer
49.4k
salaries
| ₹2.8 L/yr - ₹9.2 L/yr |
System Engineer
38.9k
salaries
| ₹2.5 L/yr - ₹5.5 L/yr |
Technical Lead
30.6k
salaries
| ₹5.2 L/yr - ₹19.4 L/yr |
Senior Associate Consultant
27.1k
salaries
| ₹4.3 L/yr - ₹16.8 L/yr |
TCS
Wipro
Cognizant
Accenture