Upload Button Icon Add office photos

PwC

Compare button icon Compare button icon Compare

Filter interviews by

PwC Blockchain Developer Interview Questions and Answers

Updated 25 Jun 2024

5 Interview questions

A Blockchain Developer was asked
Q. What is the complete lifecycle for a blockchain transaction?
Ans. 

The complete lifecycle for a blockchain transaction involves creation, validation, broadcast, inclusion in a block, and confirmation.

  • Creation of transaction by sender

  • Validation of transaction by network nodes

  • Broadcasting of transaction to network

  • Inclusion of transaction in a block by miners

  • Confirmation of transaction by consensus of network nodes

A Blockchain Developer was asked
Q. Can we publish our own custom blockchain? If yes, what are the steps for that?
Ans. 

Yes, you can publish your own custom blockchain by following these steps.

  • Define the purpose and requirements of your custom blockchain

  • Choose a consensus mechanism (e.g. Proof of Work, Proof of Stake)

  • Select a suitable blockchain platform (e.g. Ethereum, Hyperledger)

  • Develop and deploy the custom blockchain network

  • Test the network for functionality and security

  • Launch and promote your custom blockchain to attract user...

Blockchain Developer Interview Questions Asked at Other Companies

asked in Lynkit
Q1. Describe your experience with blockchain and Hyperledger Fabric, ... read more
asked in PwC
Q2. Can we publish our own custom blockchain? If yes, what are the st ... read more
Q3. When writing a smart contract to handle all things, how do you en ... read more
Q4. What are the different types of blockchains, and what are the dif ... read more
Q5. How do you disable the transfer method in smart contracts on priv ... read more
A Blockchain Developer was asked
Q. How do we estimate gas for a transaction?
Ans. 

Gas for a transaction is estimated based on the computational resources required to execute the transaction on the blockchain network.

  • Gas is a unit used to measure the computational work required to process transactions on the blockchain.

  • Gas cost is determined by the complexity of the transaction and the amount of data being processed.

  • Developers can estimate gas by using tools like the Ethereum Gas Station or by s...

A Blockchain Developer was asked
Q. What is the difference between proof of work and proof of stake?
Ans. 

Proof of work requires miners to solve complex mathematical puzzles to validate transactions, while proof of stake selects validators based on the amount of cryptocurrency they hold.

  • Proof of work involves miners solving complex mathematical puzzles to validate transactions

  • Proof of stake selects validators based on the amount of cryptocurrency they hold

  • Proof of work is energy-intensive and requires significant comp...

What people are saying about PwC

View All
an associate - data science and analytics
1w
KPMG salary talk: Need your negotiation wisdom!
I cleared the interview at KPMG Global Services for a Senior - Germany Corporate D&A role. Right now, I'm at 9.8 LPA fixed with 4.4 YOE as a Data Scientist. What fixed CTC can I realistically expect and negotiate with HR for this role? I feel like I got lowballed in my last switch, so any advice would be awesome!
Got a question about PwC?
Ask anonymously on communities.
A Blockchain Developer was asked
Q. Can we inherit a class in Solidity?
Ans. 

Yes, inheritance is possible in Solidity.

  • Solidity supports inheritance, allowing one contract to inherit properties and methods from another.

  • Inheritance is achieved using the 'is' keyword followed by the name of the base contract.

  • Child contracts can access the functions and variables of the parent contract.

  • Multiple inheritance is also supported in Solidity.

PwC Blockchain Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. Complete lifecycle for a blockchain transaction?
  • Ans. 

    The complete lifecycle for a blockchain transaction involves creation, validation, broadcast, inclusion in a block, and confirmation.

    • Creation of transaction by sender

    • Validation of transaction by network nodes

    • Broadcasting of transaction to network

    • Inclusion of transaction in a block by miners

    • Confirmation of transaction by consensus of network nodes

  • Answered by AI
  • Q2. Can we publish our own cusotom blockchain if yes what are the steps for that??
  • Ans. 

    Yes, you can publish your own custom blockchain by following these steps.

    • Define the purpose and requirements of your custom blockchain

    • Choose a consensus mechanism (e.g. Proof of Work, Proof of Stake)

    • Select a suitable blockchain platform (e.g. Ethereum, Hyperledger)

    • Develop and deploy the custom blockchain network

    • Test the network for functionality and security

    • Launch and promote your custom blockchain to attract users and...

  • Answered by AI
  • Q3. How we estimate gas for a transaction?
  • Ans. 

    Gas for a transaction is estimated based on the computational resources required to execute the transaction on the blockchain network.

    • Gas is a unit used to measure the computational work required to process transactions on the blockchain.

    • Gas cost is determined by the complexity of the transaction and the amount of data being processed.

    • Developers can estimate gas by using tools like the Ethereum Gas Station or by simula...

  • Answered by AI
  • Q4. Difference between proof of work and proof of stack?
  • Ans. 

    Proof of work requires miners to solve complex mathematical puzzles to validate transactions, while proof of stake selects validators based on the amount of cryptocurrency they hold.

    • Proof of work involves miners solving complex mathematical puzzles to validate transactions

    • Proof of stake selects validators based on the amount of cryptocurrency they hold

    • Proof of work is energy-intensive and requires significant computati...

  • Answered by AI
  • Q5. Canwe inharit class in solidity?
  • Ans. 

    Yes, inheritance is possible in Solidity.

    • Solidity supports inheritance, allowing one contract to inherit properties and methods from another.

    • Inheritance is achieved using the 'is' keyword followed by the name of the base contract.

    • Child contracts can access the functions and variables of the parent contract.

    • Multiple inheritance is also supported in Solidity.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice to meet him, he has been working with blockchain for pwc for the past 8 years. It's a pleasure to share knoledge with him.

Skills evaluated in this interview

PwC HR Interview Questions

286 questions and answers

Q. What motivated you to choose this company?
Q. What motivated you to choose a career in cybersecurity?
Q. What skills do you have?

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This test consists of two coding questions and some MCQ regarding computer fundamentals.

  • Q1. 

    Kevin and His Cards Problem Statement

    Kevin has two packs of cards. The first pack contains N cards, and the second contains M cards. Each card has an integer written on it. Determine two results: the tot...

  • Ans. 

    Find total distinct card types and common card types between two packs of cards.

    • Create a set to store distinct card types when combining both packs.

    • Iterate through each pack and add card types to the set.

    • Find the intersection of card types between the two packs to get common card types.

  • Answered by AI
  • Q2. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through all possible allocations of books to students.

    • Calculate the maximum number of pages assigned to a student for each allocation.

    • Return the minimum of these maximums as the result.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

It was a technical round that is based on DSA and computer fundamentals.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria10- above 60% 12- ABove 60 percentZS Associates interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, DBMS, OOPS, Operating System , System DesignTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : If you are not able to complete something in-depth, clearly mention that to the interviewer.
Tip 2 : Practice DSA well.
Tip 3 : Try to think analytically and more logically,Your thinking skills matters a lot.

Application resume tips for other job seekers

Tip 1 : Try to mention max no of projects
Tip 2 : DO not fake in your resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Reverse a LL, Git use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself

Interview Questionnaire 

1 Question

  • Q1. Scenario based question on Relationship, Role, OWD,

Interview Questionnaire 

1 Question

  • Q1. Java basics

Interview Questionnaire 

1 Question

  • Q1. What are the differences between component event and application event?
  • Ans. 

    Component events are fired and handled by a single component, while application events are fired and handled by multiple components.

    • Component events are used for communication between components within a single application.

    • Application events are used for communication between components across multiple applications.

    • Component events are fired using fireEvent() method, while application events are fired using $A.get('e.n...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview was good.
There were two rounds and all are fron the areas that I have worked

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic OOPS concepts?
  • Ans. 

    OOP is a programming paradigm based on objects, encapsulating data and behavior for modular and reusable code.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same interface for differe...

  • Answered by AI
  • Q2. Logical Coding like remove duplicates from array

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your basic OOPS concepts

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do you handle downtime

Interview Preparation Tips

Interview preparation tips for other job seekers - Because confident and prepare well for versant test

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Assignment 

Cofing round on hackerearth

Round 2 - Case Study 

Case study with algo and db design

Interview Preparation Tips

Interview preparation tips for other job seekers - Great technology, poor worklife balance

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous operations block execution until completion, while asynchronous operations allow other tasks to run concurrently.

    • Synchronous operations wait for a task to complete before moving to the next one. Example: A function that reads a file and returns its content.

    • Asynchronous operations allow other tasks to run while waiting for a task to complete. Example: A web request that fetches data without blocking the UI.

    • S...

  • Answered by AI
  • Q2. When to use CTE and temp table.

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.

PwC Interview FAQs

How many rounds are there in PwC Blockchain Developer interview?
PwC interview process usually has 2 rounds. The most common rounds in the PwC interview process are Technical and Resume Shortlist.
What are the top questions asked in PwC Blockchain Developer interview?

Some of the top questions asked at the PwC Blockchain Developer interview -

  1. can we publish our own cusotom blockchain if yes what are the steps for tha...read more
  2. difference between proof of work and proof of sta...read more
  3. how we estimate gas for a transacti...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Senior Associate
20.2k salaries
unlock blur

₹12.7 L/yr - ₹25.4 L/yr

Associate
15.6k salaries
unlock blur

₹8.1 L/yr - ₹14.6 L/yr

Manager
7.6k salaries
unlock blur

₹22.5 L/yr - ₹41 L/yr

Senior Consultant
5.1k salaries
unlock blur

₹16 L/yr - ₹27 L/yr

Associate2
4.9k salaries
unlock blur

₹7.5 L/yr - ₹14 L/yr

Explore more salaries
Compare PwC with

Deloitte

3.7
Compare

Ernst & Young

3.4
Compare

Accenture

3.7
Compare

TCS

3.5
Compare
write
Share an Interview