国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

CS209A代做、Java程序設(shè)計(jì)代寫
CS209A代做、Java程序設(shè)計(jì)代寫

時(shí)間:2024-12-25  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



Project.md 2024-1**10
1 / 3
[CS209A-24Fall] Assignment2 (100 points)
Background
In the process of software development, many questions will arise. Developers may resort to Q&A website to
post questions and seek answers. Stack Overflow is such a Q&A website for programmers, and it belongs to the Stack Exchange Network. Stack
Overflow serves as a platform for users to ask and answer questions, and, through membership and active
participation, to vote questions and answers up or down and edit questions and answers in a fashion similar
to a wiki. Users of Stack Overflow can earn reputation points and "badges"; for example, a person is awarded
10 reputation points for receiving an "up" vote on a question or an answer to a question, and can receive
badges for their valued contributions. Users unlock new privileges with an increase in reputation, like the
ability to vote, comment, and even edit other people's posts. In this final project, we'll use Spring Boot to develop a web application that stores, analyzes, and visualizes
Stack Overflow Q&A data w.r.t. java programming, with the purpose of understanding the common
questions, answers, and resolution activities associated with Java programming. Data Collection (10 points)
On Stack Overflow, questions related to Java programming are typically tagged java. You could use this java
tag to identify java-related questions. A question and all of its answers and comments are together referred to
as a thread. For java-related threads on Stack Overflow, we are interested in answering a list of questions as described
below. You should first collect proper data from Stack Overflow to answer these questions. Please check the
official Stack Overflow REST API documentation to learn the REST APIs for collecting different types of data. . You may need to create a Stack Overflow account in order to use its full REST API service. · API requests are subject to rate limits. Please carefully design and execute your requests, otherwise
you may reach your daily quota quickly. . Connections to Stack Overflow REST service maybe unstable sometimes. So, please start the data
collection ASAP!
There are over 1 million threads tagged with java on Stack Overflow. You DON'T have to collect them all. Yet, you should collect data for at least 1000 threads in order to get meaningful insights from the data analysis. Important:
Data collection is offline, meaning that you need to collect and persist the data first. It is recommended that
you use a database (e.g., PostgreSQL, MySQL, etc.) to store the data. However, it is also fine if you store the
data in plain files. In other words, when users interact with your application, the server should get the data
from your local database (or local files), instead of sending REST requests to Stack Overflow on the fly. Hence, the data analysis for the below questions should be performed on the dataset you collected. That is, we first collect a subset of Stack Overflow data (e.g., 1000 threads tagged java) and then answer the
following questions using this subset.
Project.md 2024-1**10
2 / 3
Part I: Data Analysis (70 points)
For each question from this part, you should: . Figure out which data is needed to answer the question
. Design and implement the data analysis on the backend
. Visualize the results on the frontend using proper charts. In other words, when interacting with your web application from the browser, users could select interested
analysis, which sends requests to the server; the server performs corresponding data analysis and returns the
results back to the frontend, which visualizes the results on the webpages. Your work will be evaluated by: . whether the data analysis is meaningful and relevant, i.e., it can indeed answer the question with proper
they want
instantly by looking at the visualization. Take a look at the data visualization catalogue for inspirations. 1. Java Topics (10 points)
We have covered various topics in this course, e.g., generics, collections, I/O, lambda, multithreading, socket, etc. It's interesting to know, what are the top N (N>1, you may choose a proper N depending on your data
and your UI design, same below) topics that are most frequently asked on Stack Overflow?
2. User Engagement (15 points)
What are the top N topics that have the most engagement from users with higher reputation scores? User
engagement means any user activity (e.g., edit, answer, comment, upvote, downvote, etc.) on the thread. 3. Common Mistakes (15 points)
Developers make mistakes, which result in bugs in the code. Bugs manifest themselves as errors or
exceptions, which can be roughly classified as: . Fatal errors: errors like OutOfMemoryError that cannot be recovered at runtime. . Exceptions: checked exceptions and runtime exceptions that can be handled programmatically by
developers. What are the top N errors and exceptions that are frequently discussed by Java developers?
Note that, tags are high-level information and may not include low-level errors or exceptions. Hence, for this
question, you cannot only use tag information. You need to further analyze thread content (e.g., question text
and answer text) to identify error or exception related information, probably using advanced techniques such
as regular expression matching. 4. Answer Quality (30 points)
We consider an answer to be "high-quality" if it is accepted or has many upvotes. It's useful to know, what
factors contribute to high-quality answers?
3 / 3
Project.md 2024-1**10
Please investigate the following factors: . The elapsed time between question creation and answer creation (e.g., whether the first posted answer
tends to be accepted?). . The reputation of the user that creates the answer (e.g., whether answers created by high-reputation
users tend to be accepted or have more upvotes?). In addition to these 2 factors, you should also propose another 1 factor that may contribute to the quality of
answers. For each of the 3 factors, use proper data analysis and visualizations to demonstrate whether the factor
contributes to high-quality answers or not. Part II: RESTful Service (20 points)
Your application should also provide a REST service that answers the following two questions, so that users
may use RESTful APIs to GET the answers they want. The required REST services include: . Topic frequency: users could query for the frequency of a specific topic. Users could also query for the
top N topics sorted by frequency. . Bug frequency: users could query for the frequency of a specific error or exception. Users could also
query for the top N errors or exceptions sorted by frequency. Here, you could reuse the data analysis from Part I. Responses of the REST requests should be in json format. Requirements
Data Analysis
You should implement the data analysis by yourself, using Java features such as Collections, Lambda, and
Stream. You CANNOT feed the data to AI, ask AI to do the analysis, and use AI responses as your data analysis results. You will get 0 point for the question if you do so. Data analysis results should be dynamically generated by the server everytime clients send a request. You
SHOULD NOT precompute the results and stored it as a static content then simply display the precomputed
static content on the frontend. 20 points will be deducted if you do so. Web Framework
You should only use Spring Boot as the web framework. Frontend
Frontend functionalities, such as data visualization and interactive controls, could be implemented in any
programming language (e.g., JavaScript, HTML, CSS, etc.) with any 3rd-party libraries or framework.

請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp



 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫DTS207TC、SQL編程語言代做
  • 下一篇:CS305程序代做、代寫Python程序語言
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    中文字幕中文字幕在线中心一区| 久久久国产精华液999999 | 国产欧美日韩视频| 国产激情视频一区| 久久这里只有精品视频首页| 欧美成人免费在线观看| 亚洲综合色激情五月| 欧美日韩日本网| 7777精品久久久大香线蕉小说| 国产精品久久久久秋霞鲁丝| 日本一区高清在线视频| 国产美女在线一区| 波霸ol色综合久久| 色女人综合av| 成人做爽爽免费视频| 国产成人精品视频在线观看| 亚洲高清123| 国产欧美一区二区三区视频| 精品国产一区av| 亚洲xxxx在线| 精品视频无码一区二区三区| 久久久久久久一区二区| 亚洲一区二区三区香蕉| 国产人妖伪娘一区91| 久久精品成人一区二区三区| 日日碰狠狠丁香久燥| 国产精品夜夜夜一区二区三区尤| 国产精品免费一区二区三区 | 亚洲www在线| 男人天堂手机在线视频| 久久久亚洲精品视频| 午夜精品久久久内射近拍高清| 国产美女91呻吟求| 国产精品国产亚洲伊人久久| 欧美亚洲黄色片| 久久久久久亚洲精品不卡4k岛国 | 精品国产一区av| 亚洲一区二区三区久久| 国产美女精品在线观看| 精品九九九九| 国产午夜精品一区| 久久精品视频在线观看| 欧美牲交a欧美牲交aⅴ免费真| 久久久久中文字幕| 日韩视频在线观看国产| 久久久久久久亚洲精品| 日本成人精品在线| 色噜噜狠狠狠综合曰曰曰| 日韩免费av片在线观看| 久久久久久久久久久人体| 日本久久中文字幕| 色久欧美在线视频观看| 欧美激情第一页在线观看| 日韩中文字幕不卡视频| 欧美另类一区| 国产精品久久久久福利| 欧美日韩无遮挡| 国产精品久久久久久久久久免费| 免费看又黄又无码的网站| 久久综合久久八八| 国产日韩二区| 国产99久久精品一区二区永久免费| 国产视频一区二区三区四区| 久久亚洲电影天堂| 成人亚洲综合色就1024| 午夜精品在线观看| 久久精品国产精品亚洲色婷婷| 日av中文字幕| 国产精品吹潮在线观看| 国产日产欧美一区二区| 午夜免费在线观看精品视频| 777久久精品一区二区三区无码| 性一交一乱一伧国产女士spa| 久久er99热精品一区二区三区| 欧美中文字幕在线观看视频| 国产精品久久久精品| 国产伦精品一区二区三区| 亚洲一区中文字幕在线观看| 久久久久久久久久久免费视频| 精品网站在线看| 亚洲视频在线观看日本a| 国产成人精品免费久久久久| 黄色特一级视频| 亚洲熟妇无码一区二区三区| 国产精品av网站| 欧美日韩一区在线播放| 精品国产一区二区在线| 国产一区不卡在线观看| 天堂av一区二区| 国产精品美女无圣光视频| 成人国产精品久久久久久亚洲| 日产国产精品精品a∨| 国产精品乱子乱xxxx| 99视频精品全部免费看| 欧美连裤袜在线视频| 亚洲日本精品一区| 久久精视频免费在线久久完整在线看| 国产欧美一区二区在线播放| 日韩aⅴ视频一区二区三区| 国产精品成人久久电影| 久久免费看av| 美女视频久久| 日本精品视频在线观看| 色综合久久悠悠| 日韩视频在线免费| 69精品小视频| 国产欧美久久久久| 日本高清不卡在线| 精品视频9999| 日韩在线免费视频观看| 成人在线观看a| 日韩免费高清在线| 欧美极品美女电影一区| 欧美激情精品久久久久久久变态| 91好吊色国产欧美日韩在线| 久久天天躁狠狠躁老女人| 国产亚洲精品自在久久| 亚洲综合中文字幕在线| 国产精品久久久久久中文字| 久久久最新网址| 成人中文字幕在线观看| 欧美v在线观看| 色综合影院在线观看| 欧美精品一区在线播放| 久久精品视频在线播放| 久久精品国产一区二区三区日韩| 99在线看视频| 国产片侵犯亲女视频播放| 黄色成人在线看| 久久99精品久久久久久久久久 | 国产99久久九九精品无码| 久久久久久久一区二区三区| 91美女片黄在线观| 国产午夜伦鲁鲁| 韩日欧美一区二区| 欧美中文字幕在线| 日本在线一区| 懂色av一区二区三区在线播放| 欧美激情伊人电影| 精品久久免费观看| 不卡av电影在线观看| 国产精品久久在线观看| 精品国产一区二区三区久久| 91精品国产综合久久男男| 国产伦精品一区二区三区四区免费 | 日韩在线视频中文字幕| 国产女大学生av| 欧美性受xxxx黑人猛交88| 热99在线视频| 青草青草久热精品视频在线观看| 日本一区高清不卡| 日本一二三区视频在线| 亚洲激情免费视频| 中国人体摄影一区二区三区| 日韩一区av在线| 久久久视频精品| 国产激情视频一区| 国产ts人妖一区二区三区| 国产成人91久久精品| 国产成人精品免费视频大全最热 | 日韩在线资源网| 久久99精品久久久久久三级| 91精品国产成人www| 国产欧美日韩免费| 精品欧美国产| 黄黄视频在线观看| 97久久精品国产| 日韩中文字幕av| 欧美激情乱人伦| 日韩色妇久久av| 国产免费一区二区| 久激情内射婷内射蜜桃| 美女久久久久久久| 日本精品视频在线播放| 国产人妻人伦精品| 日韩在线视频免费观看| 欧美乱大交xxxxx| 日韩一级片播放| 国产日韩欧美精品在线观看| 国产成一区二区| 欧美精品性视频| 热久久99这里有精品| 成人a在线观看| 国产精品无码av无码| 亚洲va码欧洲m码| 国语自产精品视频在线看| 91精品国产91久久久久福利| 国产精品区免费视频| 无码av天堂一区二区三区| 国产中文字幕视频在线观看| 国产xxx69麻豆国语对白| 精品国偷自产一区二区三区| 任我爽在线视频精品一| 91免费看蜜桃| 麻豆乱码国产一区二区三区| 热99在线视频| 8050国产精品久久久久久| 蜜臀久久99精品久久久无需会员| 日韩男女性生活视频| youjizz.com亚洲|