SlideShare a Scribd company logo
Finding Help with Programming Errors: An Exploratory Study
of Novice Software Engineers’ Focus in Stack Overflow Posts
Preetha Chatterjee Minji Kong Lori Pollock
Journal of Systems and Software (JSS), Volume 159, Jan 2020
Asst. Prof.
[Fall ’21]
Ph.D.
Stack Overflow Usage: Statistics and Challenges
40% participants are novice programmers (< 5 yrs experience)
who struggle to find relevant information from a Stack Overflow post!!
Information Overload:
The top 5 Stack Overflow
questions for a sample
query “Differences
Hashmap Hashtable Java”,
consist of 51 answers
which have 6,771 words in
total [Xu et. al. 2017]
https://insights.stackoverflow.com/survey/2020
We aim to understand:
How novice software engineers direct their efforts and what kinds of
information they focus on within a Stack Overflow post
Study Design
RQ1. Challenges - What slows a
novice software engineer down in
identifying the solution most
appropriate for their problem?
RQ2. Focus - Which parts of a post
novice software engineers focus on to
reduce their time in locating
information?
RQ1 Findings: Developer Challenges
Survey
Question
69% participants indicated “Too much text containing unnecessary details”
51% participants indicated “Determining embedded code segment relevance”
39% indicated “Too much code containing unnecessary details”
Question Title: Polymorphism in Java error: cannot find Symbol
I've just started learning object oriented programming from the book head first java.
It said that polymorphism enables me to create an array of the superclass type and
then have all the subclasses as the array elements.
But when I tried writing code using the same principles it ran into error saying error:
cannot find symbol I made the classes the superclass was animal and the dog class
extended the animal class having a fetch method of its own, but when I referenced
the dog variable as animal it did not work here is the code
…
The error
tester.java:4: error: cannot find symbol doggie.fetch();
symbol: method fetch()
location: variable doggie of type animal
When using polymorphism, if you create an instance of the subclass and store its
reference in a variable of superclass type, you can only call those methods on the
newly created instance which are present in the super class.
In your code, you created an instance of dog class and stored its reference
in doggie which is of type animal (super class of dog), In such case, you can't call any
method on dog class instance that isn't available in animal class. fetch method is not
defined in the animal class hence you get the error.
Either define the fetch method in the animal class
OR Change animal doggie = new dog(); to dog doggie = new dog();
Developer’s Goal
Developer’s Pertinent
Action
System Symptom
Accepted Answer
Symptom Cause
Posted Solution
Solution Justification
RQ2 Findings: Developer Focus
• Too much text including unnecessary
details (69%)
• Determining embedded code segment
relevance (51%)
• Too much code including unnecessary
details (39%)
Developer’s Goal
Developer’s Pertinent Action
System Symptom
Symptom Cause
Posted Solution
Solution Justification
Novice software engineers pay attention to only 27% code and 15-21% of text in a SO post!
@PreethaChatterj
preethac@udel.edu sites.udel.edu/preethac/
Significance:
 improve the Q&A forum interface
 guide tools for mining forums
 improve granularity of traceability mappings involving forum posts
Paper link: https://doi.org/10.1016/j.jss.2019.110454
Summary and Overview
RQ1. Challenges - What slows a
novice software engineer down in
identifying the solution most
appropriate for their problem?
RQ2. Focus - Which parts of a post
novice software engineers focus on to
reduce their time in locating
information?

More Related Content

PPTX
Mining Code Examples with Descriptive Text from Software Artifacts
PPTX
Extracting Archival-Quality Information from Software-Related Chats
PPTX
Exploratory Study of Slack Q&A Chats as a Mining Source for Software Engineer...
PDF
Proactive Empirical Assessment of New Language Feature Adoption via Automated...
PDF
PyCon 2013 - Experiments in data mining, entity disambiguation and how to thi...
PDF
Natural Language Processing using Java
PDF
GPT-2: Language Models are Unsupervised Multitask Learners
PPT
QALL-ME: Ontology and Semantic Web
Mining Code Examples with Descriptive Text from Software Artifacts
Extracting Archival-Quality Information from Software-Related Chats
Exploratory Study of Slack Q&A Chats as a Mining Source for Software Engineer...
Proactive Empirical Assessment of New Language Feature Adoption via Automated...
PyCon 2013 - Experiments in data mining, entity disambiguation and how to thi...
Natural Language Processing using Java
GPT-2: Language Models are Unsupervised Multitask Learners
QALL-ME: Ontology and Semantic Web

What's hot (20)

PDF
A Hierarchical Model of Reviews for Aspect-based Sentiment Analysis
PDF
Building a Dynamic Bidding system for a location based Display advertising Pl...
PDF
Summarization Techniques for Code, Changes, and Testing
PDF
Extracting keywords from texts - Sanda Martincic Ipsic
PPT
Supporting program comprehension with source code summarization
PDF
International Journal of Engineering Research and Development (IJERD)
PPTX
Intro to programing with java-lecture 1
PPT
Improving VIVO search through semantic ranking.
PDF
PPTX
Understanding Log Lines using Development Knowledge
PDF
Mining Stack Overflow to Tun the IDE into a Self-confident Programming Prompter
PPTX
HotSoS16 Tutorial "Text Analytics for Security" by Tao Xie and William Enck
PDF
Can Deep Learning solve the Sentiment Analysis Problem
PPTX
Sentiment analyzer and opinion mining
PPTX
2. introduction to compiler
PDF
DRONE: A Tool to Detect and Repair Directive Defects in Java APIs Documentation
PPT
Is Text Search an Effective Approach for Fault Localization: A Practitioners ...
PDF
On the Distribution of Test Smells in Open Source Android Applications: An Ex...
PDF
Semantic & Multilingual Strategies in Lucene/Solr
PPT
Vivo Search
A Hierarchical Model of Reviews for Aspect-based Sentiment Analysis
Building a Dynamic Bidding system for a location based Display advertising Pl...
Summarization Techniques for Code, Changes, and Testing
Extracting keywords from texts - Sanda Martincic Ipsic
Supporting program comprehension with source code summarization
International Journal of Engineering Research and Development (IJERD)
Intro to programing with java-lecture 1
Improving VIVO search through semantic ranking.
Understanding Log Lines using Development Knowledge
Mining Stack Overflow to Tun the IDE into a Self-confident Programming Prompter
HotSoS16 Tutorial "Text Analytics for Security" by Tao Xie and William Enck
Can Deep Learning solve the Sentiment Analysis Problem
Sentiment analyzer and opinion mining
2. introduction to compiler
DRONE: A Tool to Detect and Repair Directive Defects in Java APIs Documentation
Is Text Search an Effective Approach for Fault Localization: A Practitioners ...
On the Distribution of Test Smells in Open Source Android Applications: An Ex...
Semantic & Multilingual Strategies in Lucene/Solr
Vivo Search
Ad

Similar to Finding Help with Programming Errors: An Exploratory Study of Novice Software Engineers’ Focus in Stack Overflow Posts (20)

PPTX
Automatic Identification of Informative Code in Stack Overflow Posts
DOCX
The Java Learning Kit Chapter 5 – Methods and Modular.docx
PPTX
25 php interview questions – codementor
DOCX
Ch 6 only 1. Distinguish between a purpose statement, research p
DOCX
Ch 6 only 1. distinguish between a purpose statement, research p
PDF
Object Oriented Programming Lab Manual
PPTX
Roman Sevastyanov "Рефакторинг - пути улучшения кода"
PDF
Infosys Interview Questions By ScholarHat
PDF
QUESTION ANALYSIS FOR ARABIC QUESTION ANSWERING SYSTEMS
ODP
Search Solutions 2015: Towards a new model of search relevance testing
PDF
PPS
Few minutes To better Code - Refactoring
PDF
IRJET- Semantic Question Matching
PDF
Accelerate the ROI of PHP in your Enterprise
PDF
Best Practices for Building Successful LLM Applications
PPTX
Code review
PDF
Reduce Reuse Refactor
PPTX
Turning AI Challenges into Learning Opportunities: Empowering Students to Use...
PPT
Getting Unstuck: Working with Legacy Code and Data
PDF
Sanjay resume
Automatic Identification of Informative Code in Stack Overflow Posts
The Java Learning Kit Chapter 5 – Methods and Modular.docx
25 php interview questions – codementor
Ch 6 only 1. Distinguish between a purpose statement, research p
Ch 6 only 1. distinguish between a purpose statement, research p
Object Oriented Programming Lab Manual
Roman Sevastyanov "Рефакторинг - пути улучшения кода"
Infosys Interview Questions By ScholarHat
QUESTION ANALYSIS FOR ARABIC QUESTION ANSWERING SYSTEMS
Search Solutions 2015: Towards a new model of search relevance testing
Few minutes To better Code - Refactoring
IRJET- Semantic Question Matching
Accelerate the ROI of PHP in your Enterprise
Best Practices for Building Successful LLM Applications
Code review
Reduce Reuse Refactor
Turning AI Challenges into Learning Opportunities: Empowering Students to Use...
Getting Unstuck: Working with Legacy Code and Data
Sanjay resume
Ad

More from Preetha Chatterjee (6)

PDF
Incivility in Open Source Projects: A Comprehensive Annotated Dataset of Lock...
PDF
Exploring ChatGPT for Toxicity Detection in GitHub
PDF
Interpersonal Trust in OSS: Exploring Dimensions of Trust in GitHub Pull Requ...
PDF
Data Augmentation for Improving Emotion Recognition in Software Engineering C...
PPTX
Automatically Identifying the Quality of Developer Chats for Post Hoc Use
PDF
Extracting Code Segments and Their Descriptions from Research Articles
Incivility in Open Source Projects: A Comprehensive Annotated Dataset of Lock...
Exploring ChatGPT for Toxicity Detection in GitHub
Interpersonal Trust in OSS: Exploring Dimensions of Trust in GitHub Pull Requ...
Data Augmentation for Improving Emotion Recognition in Software Engineering C...
Automatically Identifying the Quality of Developer Chats for Post Hoc Use
Extracting Code Segments and Their Descriptions from Research Articles

Recently uploaded (20)

PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Cell Structure & Organelles in detailed.
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
RMMM.pdf make it easy to upload and study
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
Cell Types and Its function , kingdom of life
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
Basic Mud Logging Guide for educational purpose
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Sports Quiz easy sports quiz sports quiz
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
O5-L3 Freight Transport Ops (International) V1.pdf
Cell Structure & Organelles in detailed.
01-Introduction-to-Information-Management.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Microbial disease of the cardiovascular and lymphatic systems
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
RMMM.pdf make it easy to upload and study
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Cell Types and Its function , kingdom of life
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
TR - Agricultural Crops Production NC III.pdf
Complications of Minimal Access Surgery at WLH
Basic Mud Logging Guide for educational purpose
PPH.pptx obstetrics and gynecology in nursing
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Sports Quiz easy sports quiz sports quiz
Anesthesia in Laparoscopic Surgery in India
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf

Finding Help with Programming Errors: An Exploratory Study of Novice Software Engineers’ Focus in Stack Overflow Posts

  • 1. Finding Help with Programming Errors: An Exploratory Study of Novice Software Engineers’ Focus in Stack Overflow Posts Preetha Chatterjee Minji Kong Lori Pollock Journal of Systems and Software (JSS), Volume 159, Jan 2020 Asst. Prof. [Fall ’21] Ph.D.
  • 2. Stack Overflow Usage: Statistics and Challenges 40% participants are novice programmers (< 5 yrs experience) who struggle to find relevant information from a Stack Overflow post!! Information Overload: The top 5 Stack Overflow questions for a sample query “Differences Hashmap Hashtable Java”, consist of 51 answers which have 6,771 words in total [Xu et. al. 2017] https://insights.stackoverflow.com/survey/2020 We aim to understand: How novice software engineers direct their efforts and what kinds of information they focus on within a Stack Overflow post
  • 3. Study Design RQ1. Challenges - What slows a novice software engineer down in identifying the solution most appropriate for their problem? RQ2. Focus - Which parts of a post novice software engineers focus on to reduce their time in locating information?
  • 4. RQ1 Findings: Developer Challenges Survey Question 69% participants indicated “Too much text containing unnecessary details” 51% participants indicated “Determining embedded code segment relevance” 39% indicated “Too much code containing unnecessary details”
  • 5. Question Title: Polymorphism in Java error: cannot find Symbol I've just started learning object oriented programming from the book head first java. It said that polymorphism enables me to create an array of the superclass type and then have all the subclasses as the array elements. But when I tried writing code using the same principles it ran into error saying error: cannot find symbol I made the classes the superclass was animal and the dog class extended the animal class having a fetch method of its own, but when I referenced the dog variable as animal it did not work here is the code … The error tester.java:4: error: cannot find symbol doggie.fetch(); symbol: method fetch() location: variable doggie of type animal When using polymorphism, if you create an instance of the subclass and store its reference in a variable of superclass type, you can only call those methods on the newly created instance which are present in the super class. In your code, you created an instance of dog class and stored its reference in doggie which is of type animal (super class of dog), In such case, you can't call any method on dog class instance that isn't available in animal class. fetch method is not defined in the animal class hence you get the error. Either define the fetch method in the animal class OR Change animal doggie = new dog(); to dog doggie = new dog(); Developer’s Goal Developer’s Pertinent Action System Symptom Accepted Answer Symptom Cause Posted Solution Solution Justification RQ2 Findings: Developer Focus
  • 6. • Too much text including unnecessary details (69%) • Determining embedded code segment relevance (51%) • Too much code including unnecessary details (39%) Developer’s Goal Developer’s Pertinent Action System Symptom Symptom Cause Posted Solution Solution Justification Novice software engineers pay attention to only 27% code and 15-21% of text in a SO post! @PreethaChatterj preethac@udel.edu sites.udel.edu/preethac/ Significance:  improve the Q&A forum interface  guide tools for mining forums  improve granularity of traceability mappings involving forum posts Paper link: https://doi.org/10.1016/j.jss.2019.110454 Summary and Overview RQ1. Challenges - What slows a novice software engineer down in identifying the solution most appropriate for their problem? RQ2. Focus - Which parts of a post novice software engineers focus on to reduce their time in locating information?

Editor's Notes

  • #3: The recent Stack Overflow survey shows that 40% participants are novice programmers i.e. people with less than 5 years of coding experience. SO often contain long threads of discussions. A previous study suggests that reading answers of a popular SO post could take about 30 minutes!! Because of this information overload, Finding help from SO is especially difficult for novice software engineers. We conducted an exploratory study to understand how novice software engineers direct their efforts and what kinds of information they focus on within a post.
  • #4: Specifically, our exploratory case study answers 2 research questions: To answer RQ1, we conducted a survey to gather novice software engineers’ perceptions of what slows them down in their Stack Overflow usage. For (RQ2) the software engineers first annotated 400 Stack Overflow posts to indicate what they would recommend to highlight to focus attention. Then, we analyzed their annotations, to gain more insight into their recommendations.
  • #5: Findings from RQ1 suggest that, majority of participants indicated the obstacles of “Too much text containing unnecessary details”, followed by “Determining embedded code segment relevance”, and “Too much code containing unnecessary details”.
  • #6: The results from RQ2 discern the kinds of information prominent in the developers’ focus. In the question we find the: Developers’ Goal: or their intended outcome. Developer’s Pertinent Action: that led to the error. Observed system response to the developer’s action. In the answer we find the: cause of the error. Suggested approach to fix the error. Reason why the suggested Solution works.
  • #7: The results from this study can be leveraged to guide tools for mining forums, and improve granularity of traceability mappings involving forum posts.