Sitecore Interview Questions?
1. Custom sitecore field
2. How to check your site is slow in sitecore
3. Sitecore jss
4. Any customization in sitecore
5. Pipelines and processors
6. Authentication to avoid anonymous user .net mvc
7. Filters
8. How to access custom sitecore field in solr search
9. ##Second largest element
using System;
public class Program
{
public static void Main()
{
int[] myArray = new int[] { 0, 1, 2, 3, 13, 8, 5 };
int largest = int.MinValue;
int second = int.MinValue;
foreach (int i in myArray)
{
if (i > largest)
{
second = largest;
largest = i;
}
else if (i > second)
{
second = i;
}
}
Console.WriteLine(largest);
Console.WriteLine(second);
}
}
10. Wild card
11. How to resolve page urls if they have *(wild card) in sitecore page?
12. Solr search
13. Predicate builder in search
14. How to configure list field in computed index field
15. How to configure language for index
16. HttpClient (5 web apis are do we need to create object of each api)
17. Query and mutation
18. Resolver and can we create custom resolver
19. Dependency injection
20. Solid principle
21. Helix principle approach(scenarios)
22. Sitecore speak
23. Thrid party crm(can we pass new field with thrid party api)
24. Dynamic placeholder and how to implement
25. How can we create multiple items in sitecore without using program for insurance company?
26. TDS and unicorn and how to setup these
27. What are the different ways to serialize the sitecore items
28. CI/CD pipeline and how to configure it
29. Which tool you were using
30. Penetration test
31. Accessibility test
32. Vulnerability test
33. What is connection pooling in asp.net?
https://doc.sitecore.com/xp/en/developers/hd/19/sitecore-headless-development/customizing-the-layout-service-rendering-output.html#creating-an-irenderingcontentsresolver-interface
httpclient (How many httpclient object needs to be created when we are making 5 webapi calls)
34. How can a user access specific sitecore site if it a user has 2 sites(25 users are there)
like US site and french site
we can create 2 roles and assign these roles to the specific users
if there are
Home
-----Service
-------Service A
-------Service B
-----Product
-------Product A
-------Product B
35. How can we get Parent Item write the code?
Ans: using Sitecore.Cotext.Item.Parent
36. Write a code display search result which will show product a,b and ab
First we need to get index
then we have to create a search context
then we have to get query from the search context
then we have to create predicate and then have to boost the result
we can use facets to filter the search result based on category
after filtering the result we have to store it in a list and display the result based on the search.
37. What is theming in sitecore sxa how can we set theming for each site
38. What is styling and can we set styling for specific component
39. What is branch template
40. What is itembucket and how can we configure and access bucket items
41. What is token
42. What is the rendering variant sxa
43. What is the page and partial design in sxa
44. How we create modules in sxa?
45. Sitecore forms how can we send data to custom database
46. How can we add custom fields and how can we add condition fields in sitecore
47. What is personalization how can we customize the rules
48. What is layout service
49. Can we pass custom data to layout service when user login to sitecore

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home