Open In App

KeepTruckin Interview Experience for SDE-1 (1.5 Years Experienced)

Last Updated : 15 Mar, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Round 1:

  1. Detailed Project Discussion.
  2. Tell me about a time when you solve a challenging problem
  3. What is your daily routine look like in your current firm?  
  4. Why do you want to leave your current firm?
  5. https://www.geeksforgeeks.org/print-all-pairs-with-given-sum/

Round 2: Given a set of expression strings that can be of below format

* Assignment: “B = 10″* Expression with plus operator:  “A = B + C”.  * Evaluation: “eval A”* This should print out A = <some value> 

Design an approach to process the expression strings and implement them in code.

Example:

Input:

A = B + C  

B = 1

C = 2

eval A

Output:

A = 3

Round 3:

1. https://www.geeksforgeeks.org/remove-bst-keys-outside-the-given-range/


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads