4 exercises — power distance in daily practice, consultative vs. consensus decision models, unwritten seniority norms, and RFC-based engineering decisions.
0 / 17 completed
1 / 17
A Dutch engineering manager tells her new Indian team member: "Just push back if you disagree with my architecture proposal — I want the best idea to win, not my title." The team member nods but never raises objections in the following months, even when he privately believes a decision is wrong. What is the most likely explanation?
Power distance and the "just push back" trap:
The Netherlands scores among the lowest in the world on Hofstede's Power Distance Index — Dutch workplace culture assumes flat structures, direct challenge, and that titles carry little weight in a technical argument. Inviting pushback is a completely normal, low-stakes request in that context.
Many South and East Asian, Eastern European, and Latin American cultures sit much higher on the same index — where openly disagreeing with a manager, especially in front of others, can feel disrespectful regardless of what was said out loud. A single sentence of permission does not override that internalised norm, especially for someone new to the team who is still establishing trust.
Why "just push back" alone does not work: 1. It puts the entire burden of bridging the cultural gap on the higher-power-distance person 2. It is a one-time verbal statement competing against years of reinforced behaviour 3. It does not specify a safe mechanism — public real-time disagreement is the hardest form of pushback to give
What actually helps: • Offer private, 1:1, or written channels for disagreement, not just live meetings • Ask specific technical questions rather than "any objections?" — e.g. "Walk me through what could go wrong with this approach" • Model the behaviour repeatedly: visibly reward the first disagreements that do surface • Be patient — psychological safety across power distance is built over months, not stated once
Vocabulary: • power distance — how much a culture accepts unequal distribution of power/authority • flat structure — an organisation with few hierarchical layers • push back — to resist or disagree with a proposal • psychological safety — a shared belief that the team is safe for interpersonal risk-taking
2 / 17
A German tech lead structures decisions as: "I will gather everyone's input this week, then I will make the final call and document the reasoning." An American colleague from a startup background says: "That feels top-down — shouldn't the team just decide together?" How should the German tech lead explain the difference?
Consultative vs. consensus vs. autocratic decision-making:
Three common models on global engineering teams: • Autocratic: one person decides with little or no input — fast but can miss expertise and damages buy-in • Consultative (common in Germany, much of continental Europe, and many large tech orgs): input is actively gathered from relevant people, but one accountable owner makes the final call and documents the reasoning — sometimes called "disagree and commit" in a milder form • Consensus (common in some Scandinavian and cooperative cultures, and many US startups): the group must broadly agree before proceeding — high buy-in but can be slow, and can produce watered-down compromises
Why the American colleague read it as "top-down": US startup culture often equates "we decided together" with the healthiest process, and a single decision-maker can look like an old-fashioned hierarchy. But consultative models are explicitly designed to combine broad input with clear accountability — they are not the same as one person deciding in a vacuum.
The accountability argument: In consensus models, when a decision goes wrong, responsibility is diffuse ("the team decided"). In consultative models, the decision-maker owns the outcome — which many engineering cultures see as more honest, not less democratic.
Vocabulary: • consultative decision-making — gathering broad input before one person decides • consensus — a decision the whole group actively agrees with • disagree and commit — voicing disagreement during debate, then fully supporting the decision once made • decision owner — the person accountable for a specific decision's outcome
3 / 17
In a planning meeting, a Japanese engineering director asks a junior American developer: "What do you think we should build?" The American gives a confident, detailed opinion immediately. Later, a Japanese colleague explains privately: "In our culture, a junior would usually ask a senior person's view first, then build on it — answering first can seem like you think your opinion matters more than theirs." What is the healthiest way for the team to handle this gap going forward?
Making unwritten hierarchy norms explicit:
Unspoken hierarchy expectations are one of the most common sources of cross-cultural friction because neither party may realise a rule exists until it is broken. The American developer was not being disrespectful by their own cultural logic — answering promptly and confidently is often read as engaged and confident in the US. The discomfort came from an unstated norm ("juniors defer to senior views first") that was never communicated.
Two workable fixes — the point is not which one, but making it explicit: 1. Flatten and state it: "I genuinely want first impressions from everyone, regardless of level — please jump in." This works well for teams trying to build a low-power-distance culture deliberately. 2. Structure the order deliberately: seniors share context/framing first, then open the floor to junior input building on that — this respects a high-power-distance default while still gathering everyone's view.
Why silence on the norm is the real problem: Without an explicit statement, everyone defaults to their own cultural assumption — and assumes everyone else shares it. This produces situations where one person feels disrespected and the other has no idea why.
Vocabulary: • unwritten norm — an expectation that is understood but never stated • seniority order — speaking or deciding in order of rank or experience • open floor — inviting anyone to speak, without a fixed order • deference — yielding to someone's judgment or authority out of respect
4 / 17
A distributed team is deciding on a database migration strategy. The tech lead, based in Stockholm, sends a Slack message: "I've read everyone's comments on the RFC. Given the trade-offs discussed, I'm going with option B. Thanks for all the input — if anyone still has serious concerns, let's talk before Friday's cutover." A new hire from a strongly consensus-driven background is confused: "Wait, I thought we were all deciding together?" What best explains the tech lead's process?
The RFC decision pattern:
The RFC (Request for Comments) model is a widely used engineering decision process, independent of any single national culture — it is common at companies with roots in the US, UK, and Nordic countries alike, and blends well with both consultative and consensus-leaning teams.
How it typically works: 1. A proposal is documented and shared broadly 2. Everyone can comment, ask questions, and raise concerns in writing 3. A designated owner reads all input and makes a final, documented decision 4. A clear window is left for anyone with a serious, unresolved objection to escalate before execution
Why the new hire was confused: Someone from a strongly consensus-driven background (some Scandinavian cooperative traditions, some open-source communities) may expect group agreement to be required, not just gathered. The RFC model looks similar on the surface — everyone was asked for input — but the decision authority is different: one person decides, not the group.
Why this distinction matters practically: Confusing "gathering input" with "requiring agreement" leads to real friction: someone who commented with reservations may believe their objection blocks the decision, while the decision-maker believes it was simply noted and outweighed by other factors. Naming the model explicitly ("this is RFC-style — I decide, but flag hard blockers by Friday") prevents this mismatch.
Vocabulary: • RFC (Request for Comments) — a written proposal process inviting broad feedback before a decision • decision owner — the person accountable for making and documenting the final call • hard blocker — an objection serious enough that it must be resolved before proceeding • cutover — the point at which a system switches from an old to a new implementation
5 / 17
During a code review, Sarah (US) comments on David's (UK) PR: 'This branch is really well-documented and the logic is clear. However, I'm concerned about the potential performance impact of this algorithm given the anticipated user load. Have you considered using a more efficient data structure?'
David responds with: 'I thought it was pretty straightforward, and I've run some basic tests. It seems to be performing adequately.' Sarah pushes for further profiling before merging. Which of the following best describes a potential cultural difference at play?
A) David's directness is valued in British engineering culture, while Sarah's more detailed questioning is typical in American development teams. B) David's focus on 'adequate performance' reflects a UK risk-averse approach to software development, whereas Sarah's insistence on profiling demonstrates an American emphasis on proactive optimization and rigorous testing. C) The differing levels of technical detail expected in the code review process – David prioritizes functional correctness, while Sarah values thoroughness and anticipating potential issues. D) Both individuals are simply expressing their opinions; there's no underlying cultural difference influencing their communication styles.
The core of this scenario highlights differing approaches to risk management and performance optimization. While both practices are valid, the US tends to prioritize proactive problem-solving and rigorous testing (option B), often driven by a culture that values minimizing potential future issues. Conversely, the UK might be more comfortable accepting 'adequate' performance as sufficient, reflecting a potentially more conservative approach to risk tolerance – this is where the misconception lies: it's not about differing opinions, but different *priorities* shaped by cultural norms around risk assessment.
6 / 17
A team from São Paulo, Brazil, is developing a new e-commerce platform. During a sprint planning meeting, the Product Owner proposes a radical change to the user interface – a completely redesigned checkout flow – arguing it's crucial for maximizing conversion rates based on recent A/B testing results. The Lead Developer, Marco, hesitates, citing concerns about the significant time and resources required for such a large-scale redesign, especially given an upcoming deadline. He suggests phasing in the changes incrementally. Another team member, Ana, immediately counters with a passionate defense of the new design, arguing it's 'innovative' and 'essential' to their competitive advantage. Marco gently pushes back, emphasizing the importance of delivering core functionality on time. What is the most likely root cause of this disagreement?
This scenario highlights differing cultural approaches to prioritization and risk. Brazilian culture often values innovation and a willingness to take calculated risks, sometimes prioritizing ambitious goals over strict adherence to timelines or established processes. Marco's caution reflects a more pragmatic, potentially European-influenced approach that emphasizes delivering core functionality efficiently and minimizing deviations from the original plan – a common characteristic in cultures where meticulous planning and process are highly valued. The correct answer recognizes this fundamental difference in risk tolerance and prioritization.
7 / 17
During a code review, Sarah (US) comments on David's (UK) PR: 'This branch is really well-documented and the logic is clear. However, I'm concerned about the potential performance impact of this algorithm given the anticipated user load. Have you considered using a more efficient data structure?'
David responds with: 'I thought it was pretty straightforward, and I've run some basic tests. It seems to be performing adequately.' Sarah pushes for further profiling before merging. Which of the following best describes a potential cultural difference at play?
A) David's directness is valued in British engineering culture, while Sarah's more detailed questioning is typical in American development teams. B) David's focus on 'adequate performance' reflects a UK risk-averse approach to software development, whereas Sarah's insistence on profiling demonstrates an American emphasis on proactive optimization and rigorous testing. C) The differing levels of technical detail expected in the code review process – David prioritizes functional correctness, while Sarah values thoroughness and anticipating potential issues. D) Both individuals are simply expressing their opinions; there's no underlying cultural difference influencing their communication styles.
The core of this scenario highlights differing approaches to risk management and performance optimization. While both practices are valid, the US tends to prioritize proactive problem-solving and rigorous testing (option B), often driven by a culture that values minimizing potential future issues. Conversely, the UK might be more comfortable accepting 'adequate' performance as sufficient, reflecting a potentially more conservative approach to risk tolerance – this is where the misconception lies: it's not about differing opinions, but different *priorities* shaped by cultural norms around risk assessment.
8 / 17
A team from São Paulo, Brazil, is developing a new e-commerce platform. During a sprint planning meeting, the Product Owner proposes a radical change to the user interface – a completely redesigned checkout flow – arguing it's crucial for maximizing conversion rates based on recent A/B testing results. The Lead Developer, Marco, hesitates, citing concerns about the significant time and resources required for such a large-scale redesign, especially given an upcoming deadline. He suggests phasing in the changes incrementally. Another team member, Ana, immediately counters with a passionate defense of the new design, arguing it's 'innovative' and 'essential' to their competitive advantage. Marco gently pushes back, emphasizing the importance of delivering core functionality on time. What is the most likely root cause of this disagreement?
This scenario highlights differing cultural approaches to prioritization and risk. Brazilian culture often values innovation and a willingness to take calculated risks, sometimes prioritizing ambitious goals over strict adherence to timelines or established processes. Marco's caution reflects a more pragmatic, potentially European-influenced approach that emphasizes delivering core functionality efficiently and minimizing deviations from the original plan – a common characteristic in cultures where meticulous planning and process are highly valued. The correct answer recognizes this fundamental difference in risk tolerance and prioritization.
9 / 17
During a code review, Sarah (US) comments on David's (UK) PR: 'This branch is really well-documented and the logic is clear. However, I'm concerned about the potential performance impact of this algorithm given the anticipated user load. Have you considered using a more efficient data structure?'
David responds with: 'I thought it was pretty straightforward, and I've run some basic tests. It seems to be performing adequately.' Sarah pushes for further profiling before merging. Which of the following best describes a potential cultural difference at play?
A) David's directness is valued in British engineering culture, while Sarah's more detailed questioning is typical in American development teams. B) David's focus on 'adequate performance' reflects a UK risk-averse approach to software development, whereas Sarah's insistence on profiling demonstrates an American emphasis on proactive optimization and rigorous testing. C) The differing levels of technical detail expected in the code review process – David prioritizes functional correctness, while Sarah values thoroughness and anticipating potential issues. D) Both individuals are simply expressing their opinions; there's no underlying cultural difference influencing their communication styles.
The core of this scenario highlights differing approaches to risk management and performance optimization. While both practices are valid, the US tends to prioritize proactive problem-solving and rigorous testing (option B), often driven by a culture that values minimizing potential future issues. Conversely, the UK might be more comfortable accepting 'adequate' performance as sufficient, reflecting a potentially more conservative approach to risk tolerance – this is where the misconception lies: it's not about differing opinions, but different *priorities* shaped by cultural norms around risk assessment.
10 / 17
A team from São Paulo, Brazil, is developing a new e-commerce platform. During a sprint planning meeting, the Product Owner proposes a radical change to the user interface – a completely redesigned checkout flow – arguing it's crucial for maximizing conversion rates based on recent A/B testing results. The Lead Developer, Marco, hesitates, citing concerns about the significant time and resources required for such a large-scale redesign, especially given an upcoming deadline. He suggests phasing in the changes incrementally. Another team member, Ana, immediately counters with a passionate defense of the new design, arguing it's 'innovative' and 'essential' to their competitive advantage. Marco gently pushes back, emphasizing the importance of delivering core functionality on time. What is the most likely root cause of this disagreement?
This scenario highlights differing cultural approaches to prioritization and risk. Brazilian culture often values innovation and a willingness to take calculated risks, sometimes prioritizing ambitious goals over strict adherence to timelines or established processes. Marco's caution reflects a more pragmatic, potentially European-influenced approach that emphasizes delivering core functionality efficiently and minimizing deviations from the original plan – a common characteristic in cultures where meticulous planning and process are highly valued. The correct answer recognizes this fundamental difference in risk tolerance and prioritization.
11 / 17
During a code review, Sarah (US) comments on David's (UK) PR: 'This branch is really well-documented and the logic is clear. However, I'm concerned about the potential performance impact of this algorithm given the anticipated user load. Have you considered using a more efficient data structure?'
David responds with: 'I thought it was pretty straightforward, and I've run some basic tests. It seems to be performing adequately.' Sarah pushes for further profiling before merging. Which of the following best describes a potential cultural difference at play?
A) David's directness is valued in British engineering culture, while Sarah's more detailed questioning is typical in American development teams. B) David's focus on 'adequate performance' reflects a UK risk-averse approach to software development, whereas Sarah's insistence on profiling demonstrates an American emphasis on proactive optimization and rigorous testing. C) The differing levels of technical detail expected in the code review process – David prioritizes functional correctness, while Sarah values thoroughness and anticipating potential issues. D) Both individuals are simply expressing their opinions; there's no underlying cultural difference influencing their communication styles.
The core of this scenario highlights differing approaches to risk management and performance optimization. While both practices are valid, the US tends to prioritize proactive problem-solving and rigorous testing (option B), often driven by a culture that values minimizing potential future issues. Conversely, the UK might be more comfortable accepting 'adequate' performance as sufficient, reflecting a potentially more conservative approach to risk tolerance – this is where the misconception lies: it's not about differing opinions, but different *priorities* shaped by cultural norms around risk assessment.
12 / 17
A team from São Paulo, Brazil, is developing a new e-commerce platform. During a sprint planning meeting, the Product Owner proposes a radical change to the user interface – a completely redesigned checkout flow – arguing it's crucial for maximizing conversion rates based on recent A/B testing results. The Lead Developer, Marco, hesitates, citing concerns about the significant time and resources required for such a large-scale redesign, especially given an upcoming deadline. He suggests phasing in the changes incrementally. Another team member, Ana, immediately counters with a passionate defense of the new design, arguing it's 'innovative' and 'essential' to their competitive advantage. Marco gently pushes back, emphasizing the importance of delivering core functionality on time. What is the most likely root cause of this disagreement?
This scenario highlights differing cultural approaches to prioritization and risk. Brazilian culture often values innovation and a willingness to take calculated risks, sometimes prioritizing ambitious goals over strict adherence to timelines or established processes. Marco's caution reflects a more pragmatic, potentially European-influenced approach that emphasizes delivering core functionality efficiently and minimizing deviations from the original plan – a common characteristic in cultures where meticulous planning and process are highly valued. The correct answer recognizes this fundamental difference in risk tolerance and prioritization.
13 / 17
During a standup meeting, Javier (Mexico) says: 'We've completed the user authentication module. I think we should prioritize performance testing next.' His teammate, Ben (UK), responds with: 'That sounds good, but are we sure that's the highest priority given the upcoming deadline for feature X?' Which of the following best captures Ben's implied cultural perspective?
Ben's response highlights a potential difference in communication styles. The UK often values directness and efficiency, prioritizing task completion over extensive discussion. While not necessarily 'critical,' his phrasing implies a desire for clear direction and a focus on the deadline, which aligns with a more results-oriented approach common in some cultures. Option A is too simplistic; option C misinterprets Ben's intent; and option D suggests an inappropriate response.
14 / 17
In a Slack channel discussing a new API endpoint design, Maria (Spain) writes: 'I've reviewed the documentation, and I think this approach is perfectly fine. It's simple and easy to understand.' Her colleague, Kenji (Japan), replies: 'Could you elaborate on why you believe it's suitable? Perhaps we could discuss potential edge cases or alternative implementations?' Maria feels pressured by Kenji's response. What does Kenji's approach primarily reflect?
Kenji's question reflects a common cultural value in Japan – seeking justification and exploring alternatives before accepting a solution. This approach emphasizes group harmony and thoroughness, requiring detailed explanations to ensure everyone understands the rationale behind decisions. Maria's feeling of pressure illustrates that differing communication styles can lead to misunderstandings if not recognized and addressed proactively.
15 / 17
During a code review, David (Australia) comments on a PR from Lena (Russia): 'The logic here is quite convoluted. Could you explain the reasoning behind this approach?' Lena responds: 'I thought it was the most efficient way to achieve the desired outcome.' David's comment suggests…
David's prompt for a detailed explanation reflects a cultural tendency towards directness and emphasis on understanding the 'why' behind technical choices. This is often seen in European cultures, where transparency and accountability are highly valued. Lena's response, prioritizing efficiency over explanation, represents a different perspective that might be more common in some other regions.
16 / 17
A product manager from Canada, Sarah, is presenting a new feature to the development team. She says: 'Let's just build this – it's a quick win and will give us immediate value.' The lead developer, Piotr (Poland), responds: 'Before we proceed, could we discuss the long-term implications of this decision and potential technical debt?' Piotr's response suggests…
Piotr's reaction highlights a potential difference in priorities. The Canadian approach often favors rapid iteration and 'quick wins,' while Poland (and similar cultures) tends to value stability, long-term planning, and minimizing technical debt. This reflects a broader cultural tendency towards risk aversion and a preference for careful consideration before committing to a course of action.
17 / 17
During a code review, Chloe (Germany) comments on John's (Brazil) PR: 'This is good, but the error handling could be more robust. What happens if this exception occurs?' John replies with a dismissive shrug and says, 'It's unlikely to happen.' What cultural difference might be at play here?
John's dismissive response reflects a potential difference in risk perception and planning horizons. Cultures with a greater emphasis on immediate results may be less inclined to proactively address potential problems or anticipate future scenarios, prioritizing speed over thoroughness. While not universally true for Brazilians, this tendency is often associated with certain Latin American cultural contexts.
What does the "Hierarchy & Decision-Making" exercise practise?
Practice recognising flat vs. hierarchical decision-making culture in global IT teams. Power distance, consultative vs. consensus models, and RFC-style decisions. 4 exercises.
How many questions are in this exercise?
This exercise has 17 questions, each multiple-choice with a full explanation shown after you answer.
What English level is this exercise for?
This exercise is tagged Intermediate. If the vocabulary feels difficult, browse the Cross-Cultural Communication category page for an easier module to start with.
Is this exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is free with no account, sign-up, or paywall.
Do I get feedback if I answer incorrectly?
Yes — whichever option you choose, right or wrong, you'll immediately see an explanation clarifying the correct term and why the other options don't fit.
Can I retry this exercise?
Yes — once you finish all the questions, a "Try again" button on the results screen resets the exercise so you can practise as many times as you like.
Do I need an account to track my progress?
No account is required. Your progress bar and score for this session are tracked in the browser as you go, but nothing is saved once you leave the page.
Is "Hierarchy & Decision-Making" part of a larger series?
Yes — it's one exercise in the Cross-Cultural Communication category on CoderSlingo. See the category page for the full list of related exercises on similar terminology.
Can I link directly to this exercise?
Yes — this exercise has its own permanent URL, so you can bookmark it or share the link directly with a colleague or study partner.
Where can I find more exercises like this one?
See the Cross-Cultural Communication category page for related exercises, or browse the main Exercises hub for other IT English topics.