Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Veronica

    Exit Interview Questions for Software Engineers

    Hi everyone, I am a software engineer and I am currently preparing for an exit interview. I was wondering if anyone could share some of the questions that they have been asked in their exit interviews. I am particularly interested in questions related to the following topics: Reasons for...
  2. Veronica

    Travelling Salesman Problem Using Dynamic Programming

    In the traveling salesman problem algorithm, we take a subset N of the required cities that need to be visited, the distance among the cities dist, and starting city s as inputs. Each city is identified by a unique city id which we say like 1,2,3,4,5………n Here we use a dynamic approach to...
  3. Veronica

    C++ How to calculate the greatest common divisor of two numbers in C++.

    We can traverse over all the numbers from min(A, B) to 1 and check if the current number divides both A and B or not. If it does, then it will be the GCD of A and B. int GCD(int A, int B) { int m = min(A, B), gcd; for(int i = m; i > 0; --i) if(A % i == 0 && B % i == 0) {...
  4. Veronica

    Python Go through hidden elements one by one.

    I have a few elements I want to click with selenium. The elements are hidden and I'm using the format right. Consequently, I'm looking for a workaround to iterate the function. I have the function in curly braces with the 'f' format to read the function. In order to see the element I have to...
  5. Veronica

    Angular, WebAPI,SignalR beginning questions

    Should I take this post down if it is incorrect or silly? I recently graduated college and am applying for an entry-level position. I am about to take a technical assessment that includes topics I'm not familiar with such as Angular, SignalR, and WebAPI. Is it a good idea to group all of these...
  6. Veronica

    How to connect with azure SQL database without IP whitelisting

    At the interview, I was asked how I would connect to a newly provisioned SQL Server in a resource group using Azure Data Factory without whitelisting the IP address. I suggested Managed Identity as an option. Can someone guide me to the best practices around it? The securest way to connect to...
  7. Veronica

    Interview Questions for Java: Clarifications

    I took part in a Java interview and was asked the following questions, the answers to which I am unable to provide. 1> I have below class class CricketTeam{ String name; //this is the complete name(inclusive of first and last name) } Cricket Players name are as...
  8. Veronica

    JavaScript Want more resource

    We can use binary search to find the target element in an array. First, we need to sort the array in ascending order. Then, we can use binary search to find the target element in the sorted array. The time complexity of this approach is O(nlogn), where n is the number of elements in the Array...
  9. Veronica

    what's up?

    Hey Everyone!
Back
Top Bottom