Travelers EDP Software Engineer Interview

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:55 PM on 9/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

10 Terms

1
New cards

Object-Oriented Programming

Programming paradigm that organizes code around objects - bundles data (attributes) and behavior that operates on that data (method)
- Encapsulation, Abstraction, Inheritance, Polymorphism,

2
New cards

Encapsulation

Bundling of data and methods together in a class, restricting access to internal details

3
New cards

Abstraction

Hiding complex implementation details behind a simple interface - user only needs to know what something does not how

4
New cards

Inheritance

Class derives from another class, child class obtains the parent class structure/behavior

5
New cards

Polymorphism

Ability of objects responding in their own way to the same method

6
New cards

MERN Stack

Used to build fast, scalable, full-stack web applications

  • Mongo DB: Store and Retrieves application data

  • Express.js: Processing incoming HTTP requests and executing server logic

  • React: Builds User interface

  • Node.js: Processing incoming HTTP requests and executing server logic


7
New cards

What is a REST API?

A REST API is a type of APIthat allows applications to communicate over HTTP requests such as GET, POST, PUT/PATCH, DELETE, often exchanged in JSON format

8
New cards

SQL vs NoSQL Database

SQL database isrelational, used for structured data, for example tables with rows and columns.
- MySQL, Oracle, SQL Server
NoSQL database non-relational, used for unstructured or semi-structured data
- MongoDB, DynamoDB

9
New cards

What is a Load Balancer?

Distributes incoming network traffic across multiple servers so that no single server has to handle entire workload

10
New cards