Upload Button Icon Add office photos

Filter interviews by

Veradigm Desktop Support Engineer L1 and L2 Interview Questions and Answers

Updated 5 May 2023

Veradigm Desktop Support Engineer L1 and L2 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Hardware questions
  • Q2. What is latest configuration for the computer? what is the current RAM standard
  • Ans. 

    The latest configuration for a computer varies depending on the manufacturer and model. The current RAM standard is DDR4.

    • The latest configuration for a computer depends on the manufacturer and model

    • Some common configurations include Intel Core i7 or i9 processors, solid-state drives, and dedicated graphics cards

    • The current RAM standard is DDR4, which offers faster speeds and higher capacities than previous standards li...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain about data scrapping,computer vision,agile methodologies,change request,testing methods
  • Ans. 

    Data scraping, computer vision, agile methodologies, change request, and testing methods are all important aspects of software engineering.

    • Data scraping involves extracting data from websites or other sources.

    • Computer vision involves using algorithms to interpret and analyze visual data.

    • Agile methodologies are a set of principles for software development that prioritize flexibility and collaboration.

    • Change requests are...

  • Answered by AI
  • Q2. Explain about project i worked in

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewer was very friendly and i had good experience.2 technical rounds one client round and one HR round

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Qurstions on work experience, html, css, javascript and react. Js

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you don't know the answer be truthful and prepare well on your domain.

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenerio based SQL and informatica related Questions were asked for ETL developer position

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 technical interview and questions asked from basic to current update on tools

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Java 8 features - Stream API, Functional interface (Predicate, Binary Operators, Function), Permgen V/s Metaspace, Date and Time API
  • Q2. Spring boot annotations - @SpringBootApplication, @RestController, @GetMapping, @PostMapping, @Service, @Repository
  • Q3. Coding Question 1 - Find sum of squares of numbers in list using stream API.
  • Ans. 

    Find sum of squares of numbers in list using stream API.

    • Use mapToInt() to convert list of integers to IntStream

    • Use map() to square each element of IntStream

    • Use sum() to get the sum of squares

  • Answered by AI
  • Q4. Coding Question 2 - Searching in 2D sorted array row wise and column wise.
  • Ans. 

    Searching in 2D sorted array row wise and column wise.

    • Start from the top right corner or bottom left corner

    • Compare the target with the current element

    • Move left or down if target is smaller or move right or up if target is larger

    • Repeat until target is found or out of bounds

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and also do lots of hands on coding.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Strings, arrays, dp

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Algorithms, System designing, Azure

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Describe the best project of yours till now.
  • Q2. Find the shortest path in a graph between 2 given vertices.
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path between 2 vertices in a graph.

    • Implement Dijkstra's algorithm to find the shortest path

    • Create a priority queue to keep track of the vertices with the shortest distance

    • Use a visited set to avoid revisiting vertices

    • Stop when the destination vertex is reached

    • Return the shortest path found

    • Example: finding the shortest path between A and D in a graph with weighted edges: A->...

  • Answered by AI
  • Q3. Given an array, find how many such pairs having sum equal to 0 are there?
  • Ans. 

    Find pairs in an array with sum equal to 0.

    • Use a hash table to store the frequency of each element.

    • Iterate through the array and for each element, check if its complement (negative value) exists in the hash table.

    • If it exists, add the frequency of the complement to the count of pairs.

    • Return the count of pairs.

    • Example: array = [2, -2, 3, 0, -3], pairs = 2 (-2, 2 and -3, 3)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There was an online coding test consisting of 3 questions to be solved in 1.5 hr.
After that, there were 3 interview rounds in total. 2 technical and 1 HR round.

Skills evaluated in this interview

I appeared for an interview in Jul 2019.

Interview Questionnaire 

4 Questions

  • Q1. 1. Java questions basee on interfaces, Exception Handling, inheritance, Steam API;
  • Q2. 2. SQL questions related to joins, sub-queries, nth highest salary;
  • Q3.  3. Basic algorithms questions based on Arrays/Linked List.
  • Q4. 4. Puzzles based on basic aptitudes test.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for Java Developer. I had 4 rounds (all technical rounds). Each rounds comprises questions related to Java/Puzzles/Algorithms and my experience of project.

Go through your resume. Things should be relevant and one should have clear understanding of basics.

Interview Questionnaire 

9 Questions

  • Q1. System design of traffic signal
  • Ans. 

    Design a traffic signal system

    • Identify the number of lanes and intersections

    • Determine the traffic flow and peak hours

    • Choose appropriate sensors and controllers

    • Implement a synchronization algorithm

    • Consider emergency vehicle prioritization

    • Include pedestrian crossing signals

    • Ensure compliance with local regulations

  • Answered by AI
  • Q2. Data structures
  • Q3. Oops spring jdbc
  • Q4. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when multiple keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap map = new HashMap<>();

  • Answered by AI
  • Q5. Pattern printing code
  • Ans. 

    Printing patterns using code

    • Identify the pattern to be printed

    • Use loops to print the pattern

    • Adjust the loop variables to control the pattern

    • Use conditional statements to modify the pattern

    • Examples: printing stars, triangles, squares, etc.

  • Answered by AI
  • Q6. Common point in linked list
  • Ans. 

    Common point in linked list refers to the node where two or more linked lists intersect.

    • The common point can be found by traversing both linked lists and comparing the nodes.

    • The common point can also be found by using two pointers, one for each linked list, and moving them until they meet at the common point.

    • Examples include finding the intersection point of two linked lists or finding the loop in a linked list.

  • Answered by AI
  • Q7. Optimization
  • Q8. Synchronisation
  • Q9. Threads

Skills evaluated in this interview

Veradigm Interview FAQs

How many rounds are there in Veradigm Desktop Support Engineer L1 and L2 interview?
Veradigm interview process usually has 2 rounds. The most common rounds in the Veradigm interview process are Resume Shortlist and Technical.
What are the top questions asked in Veradigm Desktop Support Engineer L1 and L2 interview?

Some of the top questions asked at the Veradigm Desktop Support Engineer L1 and L2 interview -

  1. what is latest configuration for the computer? what is the current RAM stand...read more
  2. Hardware questi...read more

Tell us how to improve this page.

Veradigm Desktop Support Engineer L1 and L2 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 855 Interviews
Google Interview Questions
4.4
 • 831 Interviews
Amdocs Interview Questions
3.7
 • 514 Interviews
Zoho Interview Questions
4.3
 • 510 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
KPIT Technologies Interview Questions
3.4
 • 282 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
View all
Software Engineer
257 salaries
unlock blur

₹4.4 L/yr - ₹15 L/yr

Senior Software Engineer
233 salaries
unlock blur

₹7.8 L/yr - ₹20.5 L/yr

Associate Software Engineer
143 salaries
unlock blur

₹3.8 L/yr - ₹9.9 L/yr

Expert Software Engineer
138 salaries
unlock blur

₹14 L/yr - ₹28.4 L/yr

Quality Engineer
121 salaries
unlock blur

₹4.5 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Veradigm with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview