Ques:- What does an on-clear-block Trigger fire?

Ques:- How to create a database link?
Asked In :-
Grid Logic Software, POPCORNAPPS SOFTWARE PVT, Citrus Informatics (India), ProV Infotech Systems, Diya Systems (Mangalore), Dhyan Infotech, Hestabit Technologies, DataMetica, redBus India, Capital Numbers,
Right Answer:
To create a database link in SQL Server, you can use a linked server. Here’s the SQL command:
```sql
EXEC sp_addlinkedserver
@server='LinkedServerName',
@srvproduct='',
@provider='SQLNCLI',
@datasrc='RemoteServerName';
```
Replace `LinkedServerName` with your desired name for the link and `RemoteServerName` with the name of the remote server you want to connect to.
To create a database link in SQL Server, you can use a linked server. Here’s the SQL command:
```sql
EXEC sp_addlinkedserver
@server='LinkedServerName',
@srvproduct='',
@provider='SQLNCLI',
@datasrc='RemoteServerName';
```
Replace `LinkedServerName` with your desired name for the link and `RemoteServerName` with the name of the remote server you want to connect to.
Ques:- When you feel that a team is working efficiently, except for the fact that one member is clearly not pulling their weight? What steps will you take?
Asked In :-
Weill Cornell Medical College in Qatar, wistron, edifecs, oag, knack systems, Cognitonic Systems Pty,
Right Answer:
I would first have a private conversation with the team member to understand any challenges they might be facing. If necessary, I would offer support or resources to help them improve. If the situation doesn’t change, I would discuss the issue with the team and consider reassigning tasks or roles to ensure the team's overall efficiency.
I would first have a private conversation with the team member to understand any challenges they might be facing. If necessary, I would offer support or resources to help them improve. If the situation doesn’t change, I would discuss the issue with the team and consider reassigning tasks or roles to ensure the team's overall efficiency.
Ques:- What is the difference between Cookies collection and Form/Querystring collection?
Asked In :-
edifecs, capa - centre for aviation,
Ques:- A table is created with an INITRANS value of 2. Which value would you choose for INITRANS of an index created on this table?
Ques:- What is the difference between flexfield qualifier and segment qualifier?
Ques:- Profiles cannot be used to restrict.a. CPU time usedb. Total time connected to the databasec. Maximum time a session can be inactived. Time spent reading blocks
Asked In :-
edifecs, cheq systems, inc.,
Ques:- Why you would like to join this company?
Asked In :-
Ray Business Technologies, Evolvus Solutions, Atigo Electronics India, APPS Associates Pvt., Bobst India, Avery Dennison (India), Basware India, AvenDATA GmbH, Promantia Consulting LLP, eGain Communications,
Right Answer:
I would like to join this company because it has a strong reputation in the ERP industry, values innovation, and offers opportunities for professional growth, allowing me to contribute my skills while advancing my career.
I would like to join this company because it has a strong reputation in the ERP industry, values innovation, and offers opportunities for professional growth, allowing me to contribute my skills while advancing my career.
Ques:- What is composite scheme tax?
Asked In :-
Velocity Software Solutions, EdgeVerve Systems, Ray Business Technologies, Evolvus Solutions, Booker Wholesale, APPS Associates Pvt., Apttus Software, Orcapod Consulting Services, Motherson Sumi Infotech Design, Avery Dennison (India),
Right Answer:
The composite scheme tax is a simplified tax structure for small businesses under the Goods and Services Tax (GST) in India, allowing them to pay a fixed percentage of their turnover as tax instead of the regular GST rates.
The composite scheme tax is a simplified tax structure for small businesses under the Goods and Services Tax (GST) in India, allowing them to pay a fixed percentage of their turnover as tax instead of the regular GST rates.
Ques:- What is GST Model Law?
Asked In :-
Booker Wholesale, Atigo Electronics India, Medline Industries India, Damco Solutions, Apttus Software, Orcapod Consulting Services, Anlage Infotech (I), Basware India, AvenDATA GmbH, Smart Cube India,
Right Answer:
The GST Model Law is a framework proposed by the Goods and Services Tax (GST) Council in India, outlining the structure and provisions for implementing GST. It serves as a guideline for states to draft their own GST laws, covering aspects like registration, payment, returns, and compliance requirements for taxpayers.
The GST Model Law is a framework proposed by the Goods and Services Tax (GST) Council in India, outlining the structure and provisions for implementing GST. It serves as a guideline for states to draft their own GST laws, covering aspects like registration, payment, returns, and compliance requirements for taxpayers.
Ques:- Where would I be as a professional in five years?
Asked In :-
Velocity Software Solutions, Ray Business Technologies, Booker Wholesale, Atigo Electronics India, APPS Associates Pvt., Bobst India, Damco Solutions, Apttus Software, Motherson Sumi Infotech Design, NISC Exports Services (p),
Right Answer:
In five years, I see myself as an experienced professional in warehouse management, possibly in a supervisory or managerial role, contributing to process improvements and leading a team effectively.
In five years, I see myself as an experienced professional in warehouse management, possibly in a supervisory or managerial role, contributing to process improvements and leading a team effectively.
Ques:- Do you know DHCP
Asked In :-
Velocity Software Solutions, EdgeVerve Systems, Evolvus Solutions, Atigo Electronics India, Bobst India, Damco Solutions, Motherson Sumi Infotech Design, Anlage Infotech (I), AvenDATA GmbH, MAK Controls & Systems,
Right Answer:
Yes, DHCP stands for Dynamic Host Configuration Protocol. It automatically assigns IP addresses and other network configuration settings to devices on a network, allowing them to communicate effectively.
Yes, DHCP stands for Dynamic Host Configuration Protocol. It automatically assigns IP addresses and other network configuration settings to devices on a network, allowing them to communicate effectively.
Ques:- How do you implement custom workflows in AEM
Asked In :-
FIS Global Business Solutions India, E2E Networks, IMAGINATION TECHNOLOGIES LIMITED, Barracuda Networks, doodleblue, Aurus Tech, Everi India, MAK Controls & Systems, Cloud Assert, XBRL Ultima,
Right Answer:
To implement custom workflows in AEM, follow these steps:
1. **Create a Workflow Model**: Use the AEM Workflow Model Editor to design your workflow. Define the steps and the order in which they will execute.
2. **Add Workflow Steps**: Include custom workflow processes by creating Java classes that extend `WorkflowProcess`. Implement the `execute` method to define the logic for each step.
3. **Register the Workflow Process**: Use the OSGi configuration to register your custom workflow process in AEM.
4. **Create a Workflow Launchers**: Set up workflow launchers to trigger the workflow based on specific events or conditions, such as content creation or modification.
5. **Test the Workflow**: Deploy your workflow and test it to ensure it functions as expected.
6. **Monitor and Debug**: Use the AEM Workflow console to monitor the execution and debug any issues that arise.
To implement custom workflows in AEM, follow these steps:
1. **Create a Workflow Model**: Use the AEM Workflow Model Editor to design your workflow. Define the steps and the order in which they will execute.
2. **Add Workflow Steps**: Include custom workflow processes by creating Java classes that extend `WorkflowProcess`. Implement the `execute` method to define the logic for each step.
3. **Register the Workflow Process**: Use the OSGi configuration to register your custom workflow process in AEM.
4. **Create a Workflow Launchers**: Set up workflow launchers to trigger the workflow based on specific events or conditions, such as content creation or modification.
5. **Test the Workflow**: Deploy your workflow and test it to ensure it functions as expected.
6. **Monitor and Debug**: Use the AEM Workflow console to monitor the execution and debug any issues that arise.
Ques:- What is your approach to handling mismatches between ARXML versions
Asked In :-
Trigent Software, Infinity Labs LLP, Cyber Group India, SENSEI Technologies, Softcell Technologies, Promact Infotech, Travanleo Info Solutions India, RLABS ENTERPRISE SERVICES PVT LIMITED, Mindgate Solutions, BYTEFORZA TECHNOLOGIES,
Right Answer:
To handle mismatches between ARXML versions, I would first identify the differences in the schema and data elements between the versions. Then, I would update the integration tools and scripts to accommodate these changes, ensuring backward compatibility where possible. Additionally, I would collaborate with stakeholders to validate the updated ARXML files and perform thorough testing to ensure that the system functions correctly with the new version. Finally, I would document the changes and provide training if necessary to ensure smooth adoption.
To handle mismatches between ARXML versions, I would first identify the differences in the schema and data elements between the versions. Then, I would update the integration tools and scripts to accommodate these changes, ensuring backward compatibility where possible. Additionally, I would collaborate with stakeholders to validate the updated ARXML files and perform thorough testing to ensure that the system functions correctly with the new version. Finally, I would document the changes and provide training if necessary to ensure smooth adoption.
Ques:- What’s the difference between editable templates and static templates in AEM
Asked In :-
Solace Infotech, Define Labs, Deluxe entertainment services India, scandid, Bit Canny Technologies, rapidera technologies, Vestas Wind Technology India, Clinton Health Access Initiative, BYTEFORZA TECHNOLOGIES, AvenDATA GmbH,
Right Answer:
Editable templates in AEM allow authors to customize the layout and content of a page using a flexible, drag-and-drop interface, enabling dynamic content and reusable components. Static templates, on the other hand, are fixed layouts defined by developers, where the structure and components are set at design time, limiting authoring flexibility.
Editable templates in AEM allow authors to customize the layout and content of a page using a flexible, drag-and-drop interface, enabling dynamic content and reusable components. Static templates, on the other hand, are fixed layouts defined by developers, where the structure and components are set at design time, limiting authoring flexibility.
Ques:- How does RTE ensure data consistency in communication
Asked In :-
AnAr Solutions, Infinity Labs LLP, Elite Software Solutions, Code Insight Technologies, Agreeya Solutions India, Lucid Software, Enterprise Touch, AVIN Systems, Airborne Recruiting, Code Genesis,
Right Answer:
RTE ensures data consistency in communication by using a combination of mechanisms such as data versioning, synchronization points, and the use of consistent data types. It manages the timing of data updates and ensures that all components access the most recent and valid data through the use of a reliable communication protocol and by maintaining a consistent state across the system.
RTE ensures data consistency in communication by using a combination of mechanisms such as data versioning, synchronization points, and the use of consistent data types. It manages the timing of data updates and ensures that all components access the most recent and valid data through the use of a reliable communication protocol and by maintaining a consistent state across the system.
Ques:- What is AUTOSAR and why is it used in automotive software
Asked In :-
Startup - Navya Network, Bhanguz, 9series Solutions, YOKOGAWA IA TECHNOLOGIES INDIA, Xobin, Congruent Solution Inc, Peoplefy Infosolutions, CitiusTech Healthcare Technology, Shore Infotech India, CONDECO SOFTWARE,
Right Answer:
AUTOSAR (AUTomotive Open System ARchitecture) is a standardized software architecture for automotive systems that enables the development of scalable, reusable, and interoperable software components. It is used in automotive software to improve collaboration among manufacturers and suppliers, enhance software quality, and reduce development costs and time.
AUTOSAR (AUTomotive Open System ARchitecture) is a standardized software architecture for automotive systems that enables the development of scalable, reusable, and interoperable software components. It is used in automotive software to improve collaboration among manufacturers and suppliers, enhance software quality, and reduce development costs and time.