Software Development
Agile Software Development 4 questions
#1Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is Agile in regards to software development?#2Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is Kanban in regards to software development?#3Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is Scrum in regards to software development?#4Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Can you compare between Kanban and Scrum?
Programming 33 questions
#5Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What programming language do you prefer to use for DevOps related tasks? Why specifically this one?#6Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What are static typed (or simply typed) languages?#7Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain expressions and statements#8Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is Object Oriented Programming? Why is it important?#9Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain Composition#10Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is a compiler and interpreter?#11Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Are you familiar with SOLID design principles?#12Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is YAGNI? What is your opinion on it?#13Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is DRY? What is your opinion on it?#14Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What are the four pillars of object oriented programming?#15Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain recursion#16Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain Inversion of Control (IoC)#17Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain Dependency Injection (DI)#18Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again True or False? In Dynamically typed languages the variable type is known at run-time instead of at compile-time#19Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain what are design patterns#20Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain big O notation#21Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is "Duck Typing"?#22Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Explain string interpolation#23Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Binary search:
- How does it works?
- Can you implement it? (in any language you prefer)
- What is the average performance of the algorithm you wrote?
#24Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What are your code-review best practices?#25Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Do you agree/disagree with each of the following statements and why?:
- The commit message is not important. When reviewing a change/patch one should focus on the actual change
- You shouldn't test your code before submitting it. This is what CI/CD exists for.
#26Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again In any language you want, write a function to determine if a given string is a palindrome#27Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again In any language you want, write a function to determine if two strings are Anagrams#28Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again In any language you would like, print the numbers from 1 to a given integer. For example for input: 5, the output is: 12345#29Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Describe what would be the time complexity of the operations access, search insert and remove for the following data structures:#30Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is the complexity for the best, worst and average cases of each of the following algorithms?:
- Quick sort
- Merge sort
- Bucket Sort
- Radix Sort
#31Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Implement Stack in any language you would like#32Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Tell me everything you know about Linked Lists#33Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Describe (no need to implement) how to detect a loop in a Linked List#34Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Implement Hash table in any language you would like#35Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again What is Integer Overflow? How is it handled?#36Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Name 3 design patterns. Do you know how to implement (= provide an example) these design pattern in any language you'll choose?#37Copy AI interviewer promptBuilding prompt…Copied AI interviewer prompt!Couldn't copy, try again Given an array/list of integers, find 3 integers which are adding up to 0 (in any language you would like)