Skip to content

Commit 908ab41

Browse files
peanut996Interview Platform Bot
andauthored
[BOT] Add 23 new questions (#76)
[BOT] feat: Add 23 new questions Co-authored-by: Interview Platform Bot <bot@example.com>
1 parent da4dd1f commit 908ab41

File tree

1 file changed

+218
-0
lines changed

1 file changed

+218
-0
lines changed

data/questionBank.json

Lines changed: 218 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8139,5 +8139,223 @@
81398139
],
81408140
"difficulty": "Medium",
81418141
"title": "Linux 和 Windows 的可执行文件格式分别是什么?"
8142+
},
8143+
{
8144+
"type": "Question",
8145+
"category": [
8146+
"Database",
8147+
"数据库"
8148+
],
8149+
"difficulty": "Medium",
8150+
"title": "分库分表怎么分"
8151+
},
8152+
{
8153+
"type": "Question",
8154+
"category": [
8155+
"Database",
8156+
"数据库"
8157+
],
8158+
"difficulty": "Medium",
8159+
"title": "SharingSphere怎么查数据的总量"
8160+
},
8161+
{
8162+
"type": "Question",
8163+
"category": [
8164+
"Concurrency",
8165+
"并发",
8166+
"Thread",
8167+
"线程"
8168+
],
8169+
"difficulty": "Medium",
8170+
"title": "为什么要用ThreadLocal,ThreadLocal的原理"
8171+
},
8172+
{
8173+
"type": "Question",
8174+
"category": [
8175+
"Algorithms",
8176+
"算法"
8177+
],
8178+
"difficulty": "Medium",
8179+
"title": "布隆过滤器原理和特点"
8180+
},
8181+
{
8182+
"type": "Question",
8183+
"category": [
8184+
"Concurrency",
8185+
"并发",
8186+
"Thread Pool",
8187+
"线程池"
8188+
],
8189+
"difficulty": "Medium",
8190+
"title": "线程池处理任务的流程"
8191+
},
8192+
{
8193+
"type": "Question",
8194+
"category": [
8195+
"Concurrency",
8196+
"并发",
8197+
"Thread Pool",
8198+
"线程池"
8199+
],
8200+
"difficulty": "Medium",
8201+
"title": "面对一个有很多任务的场景,依据什么原则去设计线程池的线程数"
8202+
},
8203+
{
8204+
"type": "Question",
8205+
"category": [
8206+
"Database",
8207+
"数据库"
8208+
],
8209+
"difficulty": "Medium",
8210+
"title": "ACID特性分别怎么实现"
8211+
},
8212+
{
8213+
"type": "Question",
8214+
"category": [
8215+
"Database",
8216+
"数据库",
8217+
"Tree",
8218+
""
8219+
],
8220+
"difficulty": "Medium",
8221+
"title": "为什么要用B+树"
8222+
},
8223+
{
8224+
"type": "Question",
8225+
"category": [
8226+
"Database",
8227+
"数据库"
8228+
],
8229+
"difficulty": "Medium",
8230+
"title": "LIMIT分页查询为什么后面页面的查询会很慢"
8231+
},
8232+
{
8233+
"type": "Question",
8234+
"category": [
8235+
"Database",
8236+
"数据库"
8237+
],
8238+
"difficulty": "Medium",
8239+
"title": "索引失效有哪些场景"
8240+
},
8241+
{
8242+
"type": "Question",
8243+
"category": [
8244+
"Java",
8245+
"Java"
8246+
],
8247+
"difficulty": "Easy",
8248+
"title": "两个new Integer(100)是否=="
8249+
},
8250+
{
8251+
"type": "Question",
8252+
"category": [
8253+
"Java",
8254+
"Java",
8255+
"Spring",
8256+
"Spring"
8257+
],
8258+
"difficulty": "Medium",
8259+
"title": "用Spring的时候怎么避免循环依赖"
8260+
},
8261+
{
8262+
"type": "Question",
8263+
"category": [
8264+
"Java"
8265+
],
8266+
"difficulty": "Medium",
8267+
"title": "类型擦除问题,ArrayList<Int>可以存入一个String吗?"
8268+
},
8269+
{
8270+
"type": "Question",
8271+
"category": [
8272+
"Java"
8273+
],
8274+
"difficulty": "Medium",
8275+
"title": "java序列化生成的uuid有什么用?"
8276+
},
8277+
{
8278+
"type": "Question",
8279+
"category": [
8280+
"Java",
8281+
"Concurrency",
8282+
"并发"
8283+
],
8284+
"difficulty": "Medium",
8285+
"title": "java有哪些锁?讲讲AQS"
8286+
},
8287+
{
8288+
"type": "Question",
8289+
"category": [
8290+
"Java",
8291+
"Concurrency",
8292+
"并发"
8293+
],
8294+
"difficulty": "Medium",
8295+
"title": "synchronizied锁的原理"
8296+
},
8297+
{
8298+
"type": "Question",
8299+
"category": [
8300+
"Java",
8301+
"Concurrency",
8302+
"并发"
8303+
],
8304+
"difficulty": "Hard",
8305+
"title": "CAS操作怎么避免ABA问题"
8306+
},
8307+
{
8308+
"type": "Question",
8309+
"category": [
8310+
"Java",
8311+
"Concurrency",
8312+
"并发"
8313+
],
8314+
"difficulty": "Medium",
8315+
"title": "volatile关键字有什么用?"
8316+
},
8317+
{
8318+
"type": "Question",
8319+
"category": [
8320+
"Redis",
8321+
"String",
8322+
"字符串"
8323+
],
8324+
"difficulty": "Medium",
8325+
"title": "redis的String结构和java的String有什么不同"
8326+
},
8327+
{
8328+
"type": "Question",
8329+
"category": [
8330+
"Redis",
8331+
"Data Structures",
8332+
"数据结构"
8333+
],
8334+
"difficulty": "Medium",
8335+
"title": "redis的ZSET了解吗?底层是什么结构"
8336+
},
8337+
{
8338+
"type": "Question",
8339+
"category": [
8340+
"Redis"
8341+
],
8342+
"difficulty": "Medium",
8343+
"title": "redis为什么这么快,为什么不使用多线程?"
8344+
},
8345+
{
8346+
"type": "Question",
8347+
"category": [
8348+
"Redis"
8349+
],
8350+
"difficulty": "Medium",
8351+
"title": "了解Redis Cluster吗?多加几个实例数据要怎么迁移?"
8352+
},
8353+
{
8354+
"type": "Question",
8355+
"category": [
8356+
"Redis"
8357+
],
8358+
"difficulty": "Medium",
8359+
"title": "redis某个key过期了,删除策略有哪些?"
81428360
}
81438361
]

0 commit comments

Comments
 (0)