Taro Logo

Software Engineer Interview Experience - Washington, District of Columbia

May 5, 2023
Positive ExperienceGot Offer

Process

Easy process and easy questions, simple map, filter, and reduce questions. Javascript interview for a frontend developer.

javascript const arr = [ { name: 'John', age: 25, city: 'New York' }, { name: 'Jane', age: 30, city: 'Chicago' }, { name: 'Bob', age: 20, city: 'San Francisco' }, { name: 'Mary', age: 27, city: 'New York' }, ];

const obj = { city: 'New York', age: 25 };

// Expected outcome: // [ // {name: 'John', age: 25, city: 'New York'}, // {name: 'Mary', age: 27, city: 'New York'}, // ];

const result = arr.filter(el => { for (let key of Object.keys(obj)) { if (obj[key] === el[key]) { return true; } } });

// result

Questions

const arr = [ { name: 'John', age: 25, city: 'New York' }, { name: 'Jane', age: 30, city: 'Chicago' }, { name: 'Bob', age: 20, city: 'San Francisco' }, { name: 'Mary', age: 27, city: 'New York' }, ];

const obj = { city: 'New York', age: 25 };

// Expected outcome: // [ // {name: 'John', age: 25, city: 'New York'}, // {name: 'Mary', age: 27, city: 'New York'}, // ];

const result = arr.filter(el => { for (let key of Object.keys(obj)) { if (obj[key] === el[key]) { return true; } } });

result

Was this helpful?

Interview Statistics

The following metrics were computed from 1 interview experience for the Accenture Software Engineer role in Washington, District of Columbia.

Success Rate

0%
Pass Rate

Accenture's interview process for their Software Engineer roles in Washington, District of Columbia is extremely selective, failing the vast majority of engineers.

Experience Rating

Positive100%
Neutral0%
Negative0%

Candidates reported having very good feelings for Accenture's Software Engineer interview process in Washington, District of Columbia.

Accenture Work Experiences