Skip to content

Commit c913066

Browse files
peanut996Interview Platform Bot
andauthored
[BOT] Add 24 new questions (#63)
[BOT] feat: Add 24 new questions Co-authored-by: Interview Platform Bot <bot@example.com>
1 parent 377d921 commit c913066

File tree

1 file changed

+280
-0
lines changed

1 file changed

+280
-0
lines changed

data/questionBank.json

Lines changed: 280 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3667,5 +3667,285 @@
36673667
],
36683668
"difficulty": "Medium",
36693669
"title": "Serialize 接口的作用是什么?serialVersionUID 呢?"
3670+
},
3671+
{
3672+
"type": "Question",
3673+
"category": [
3674+
"Concurrency",
3675+
"并发",
3676+
"Java",
3677+
"Java"
3678+
],
3679+
"difficulty": "Medium",
3680+
"title": "简单讲一下线程池"
3681+
},
3682+
{
3683+
"type": "Question",
3684+
"category": [
3685+
"Concurrency",
3686+
"并发",
3687+
"Java",
3688+
"Java"
3689+
],
3690+
"difficulty": "Medium",
3691+
"title": "线程池的拒绝策略大概有几种?"
3692+
},
3693+
{
3694+
"type": "Question",
3695+
"category": [
3696+
"Concurrency",
3697+
"并发",
3698+
"Java",
3699+
"Java"
3700+
],
3701+
"difficulty": "Medium",
3702+
"title": "线程池的池化思想还被用在哪里?"
3703+
},
3704+
{
3705+
"type": "Question",
3706+
"category": [
3707+
"Java",
3708+
"Java",
3709+
"Spring",
3710+
"Spring"
3711+
],
3712+
"difficulty": "Medium",
3713+
"title": "spring最核心的是什么?"
3714+
},
3715+
{
3716+
"type": "Question",
3717+
"category": [
3718+
"Java",
3719+
"Java",
3720+
"Spring",
3721+
"Spring"
3722+
],
3723+
"difficulty": "Medium",
3724+
"title": "简单讲一下你对IOC的理解?"
3725+
},
3726+
{
3727+
"type": "Question",
3728+
"category": [
3729+
"Java",
3730+
"Java",
3731+
"Spring",
3732+
"Spring"
3733+
],
3734+
"difficulty": "Medium",
3735+
"title": "spring生成的bean和直接new的对象有什么区别?"
3736+
},
3737+
{
3738+
"type": "Question",
3739+
"category": [
3740+
"Java",
3741+
"Java",
3742+
"Spring",
3743+
"Spring",
3744+
"Concurrency",
3745+
"并发"
3746+
],
3747+
"difficulty": "Hard",
3748+
"title": "spring的bean是线程安全的吗?(面试官引导了很久,硬控3min,其实就是看bean是不是有状态的)"
3749+
},
3750+
{
3751+
"type": "Question",
3752+
"category": [
3753+
"Java",
3754+
"Java",
3755+
"Spring",
3756+
"Spring"
3757+
],
3758+
"difficulty": "Medium",
3759+
"title": "讲一下springMVC最核心的是什么?"
3760+
},
3761+
{
3762+
"type": "Question",
3763+
"category": [
3764+
"Java",
3765+
"Java",
3766+
"Spring",
3767+
"Spring"
3768+
],
3769+
"difficulty": "Medium",
3770+
"title": "是怎么解析url的?"
3771+
},
3772+
{
3773+
"type": "Question",
3774+
"category": [
3775+
"Java",
3776+
"Java",
3777+
"Spring",
3778+
"Spring"
3779+
],
3780+
"difficulty": "Medium",
3781+
"title": "实现springMVC最核心的几个类是什么?"
3782+
},
3783+
{
3784+
"type": "Question",
3785+
"category": [
3786+
"Database",
3787+
"数据库",
3788+
"MySQL",
3789+
"MySQL"
3790+
],
3791+
"difficulty": "Medium",
3792+
"title": "mysql的在innodb存储引擎下数据是怎么组织的?"
3793+
},
3794+
{
3795+
"type": "Question",
3796+
"category": [
3797+
"Database",
3798+
"数据库",
3799+
"MySQL",
3800+
"MySQL"
3801+
],
3802+
"difficulty": "Medium",
3803+
"title": "索引和数据是放在一起的吗?"
3804+
},
3805+
{
3806+
"type": "Question",
3807+
"category": [
3808+
"Database",
3809+
"数据库",
3810+
"MySQL",
3811+
"MySQL",
3812+
"Tree",
3813+
""
3814+
],
3815+
"difficulty": "Medium",
3816+
"title": "讲一下b+树"
3817+
},
3818+
{
3819+
"type": "Question",
3820+
"category": [
3821+
"Database",
3822+
"数据库",
3823+
"MySQL",
3824+
"MySQL",
3825+
"Tree",
3826+
""
3827+
],
3828+
"difficulty": "Medium",
3829+
"title": "b+树在非叶子结点不存储数据相比于b树有什么优势?"
3830+
},
3831+
{
3832+
"type": "Question",
3833+
"category": [
3834+
"Database",
3835+
"数据库",
3836+
"MySQL",
3837+
"MySQL",
3838+
"Algorithms",
3839+
"算法"
3840+
],
3841+
"difficulty": "Medium",
3842+
"title": "为什么加索引能提升查询速度?"
3843+
},
3844+
{
3845+
"type": "Question",
3846+
"category": [
3847+
"Database",
3848+
"数据库",
3849+
"MySQL",
3850+
"MySQL",
3851+
"Algorithms",
3852+
"算法"
3853+
],
3854+
"difficulty": "Hard",
3855+
"title": "b+树o(lg n)是怎么得出来的?底数是多少?"
3856+
},
3857+
{
3858+
"type": "Question",
3859+
"category": [
3860+
"Database",
3861+
"数据库",
3862+
"MySQL",
3863+
"MySQL",
3864+
"Tree",
3865+
""
3866+
],
3867+
"difficulty": "Hard",
3868+
"title": "b+树的k叉树这个k最大是多少?"
3869+
},
3870+
{
3871+
"type": "Question",
3872+
"category": [
3873+
"Database",
3874+
"数据库",
3875+
"MySQL",
3876+
"MySQL"
3877+
],
3878+
"difficulty": "Medium",
3879+
"title": "mysql的数据写经历了哪些过程?"
3880+
},
3881+
{
3882+
"type": "Question",
3883+
"category": [
3884+
"Database",
3885+
"数据库",
3886+
"MySQL",
3887+
"MySQL"
3888+
],
3889+
"difficulty": "Medium",
3890+
"title": "mysql中有哪几种log?简单答一下各自的作用?"
3891+
},
3892+
{
3893+
"type": "Question",
3894+
"category": [
3895+
"Database",
3896+
"数据库",
3897+
"MySQL",
3898+
"MySQL"
3899+
],
3900+
"difficulty": "Medium",
3901+
"title": "了解mysql的MVCC吗?核心的是什么?"
3902+
},
3903+
{
3904+
"type": "Question",
3905+
"category": [
3906+
"Java",
3907+
"Java",
3908+
"JVM",
3909+
"JVM"
3910+
],
3911+
"difficulty": "Medium",
3912+
"title": "jvm的内存结构?"
3913+
},
3914+
{
3915+
"type": "Question",
3916+
"category": [
3917+
"Java",
3918+
"Java",
3919+
"JVM",
3920+
"JVM",
3921+
"Concurrency",
3922+
"并发"
3923+
],
3924+
"difficulty": "Medium",
3925+
"title": "哪些是线程私有的?"
3926+
},
3927+
{
3928+
"type": "Question",
3929+
"category": [
3930+
"Java",
3931+
"Java",
3932+
"JVM",
3933+
"JVM"
3934+
],
3935+
"difficulty": "Easy",
3936+
"title": "代码文件(.java文件)是放在哪里的?"
3937+
},
3938+
{
3939+
"type": "Question",
3940+
"category": [
3941+
"Java",
3942+
"Java",
3943+
"JVM",
3944+
"JVM",
3945+
"Algorithms",
3946+
"算法"
3947+
],
3948+
"difficulty": "Hard",
3949+
"title": "如何理解\"尽量将递归转为迭代\",结合jvm讲一下?"
36703950
}
36713951
]

0 commit comments

Comments
 (0)