科大讯飞实习java一面

科大讯飞一面7.2

介绍一个项目相关,问的是对一些中间件的使用,架构

八股:

线程池参数的使用,以及如何挑选对应的线程池

线程池的工作流程

linux的基本命令,查看端口,

在linux上如何用命令查看日志文件里面的“error”的个数,并且统计行数

linux里面的 | 的管道符

jwt的组成和用法

mysql的默认事务隔离级别,解决什么问题,不能解决什么问题

MVVC的机制

undo_log的两个作用

bin_log作用

连接池的问题,有什么连接池?

列举Http协议里面请求头常见的字段

docker的使用

nginx的应用场景

如何解决跨域问题

Redis的哨兵机制(流程没答好)

哨兵节点怎么感知其他节点的存在

客户端连接哨兵节点,他是怎么感知其他哨兵的存在

场景题:

程序里面连接不上数据库,连接数据库偶尔提示连接超时,怎么去排查(只答了并发过载,节点切换,日志频繁,没答上连接池)

自己如何搭建哨兵机制(写配置文件,启动)

当运行程序发生CPU飙升怎么排查问题(这里应该答jvm排查线程,不是系统排查)

其他问题:

有没有遇到过学习或者做项目的时候问题以及排解

为什么说你有一定的学习能力

有没有用过大模型

有没有参与过团队合作

如何协调学习和自习

学习会不会遇到其他人的干预

反问

评价

公司的主要业务流程

后续流程

实习周期

#科大讯飞求职进展汇总#
全部评论
啥学历?为啥我打招呼都不理我😵
点赞 回复 分享
发布于 07-11 16:42 湖南
大佬太牛了,收藏了
点赞 回复 分享
发布于 07-25 21:42 广东
莉莉丝游戏
校招火热招聘中
官网直投
有算法题么
点赞 回复 分享
发布于 07-28 21:04 安徽

相关推荐

#牛客创作赏金赛##记录你的求职/职场日常#最常用SQL Server和OracleMySQL中字符串截取主要包括三种截取方式,一是截取字符串前(后)几个字符,二是按照长度截取,三是按照分隔符截取。一、截取方式类型函数名描述截取前(后)几个字符left(str,n)返回字符串 str 的前 n 个字符right(str,n)返回字符串 str 的后 n 个字符按长度截取mid(str, start, length)从字符串 str 的 start 位置开始截取长度为 length 的子字符串substr(str, start, length)从字符串 str 的 start 位置开始截取长度为 length 的子字符串substring(str, start, length)从字符串 str 的 start 位置开始截取长度为 length 的子字符串按分隔符截取substring_index(str, delimiter, number)返回从字符串 s 的第 number 个出现的分隔符 delimiter 之后的子串。如果 number 是正数,返回第 number 个字符左边的字符串。如果 number 是负数,返回第(number 的绝对值(从右边数))个字符右边的字符串二、实例select#返回字符串 student 中的前3个字符:left('student',3), #stu#返回字符串 student 的后两个字符:right('student',3),#ent#从字符串 'student' 中的第 2 个位置开始截取 3个 字符:mid('student', 2, 3), #tud substr('student', 2, 3), #tudsubstring('student', 2, 3), #tud #如果 number 是正数,返回正数第 number 个分隔符左边的字符串substring_index('student,学生,12',',',1), #studentsubstring_index('student,学生,12',',',2), #student,学生#如果 number 是负数,返回倒数第(绝对值number)个分隔符右边的字符串。substring_index('student,学生,12',',',-1),  #12substring_index('student,学生,12',',',-2),  #学生,12substring_index(substring_index('student,学生,12',',',-2),',',1)  #学生#输出结果:stu|end|tud|tud|tud|student|student,学生|12|学生,12|学生求解代码方法一: month和yearselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere month(date) = 8 and year(date) = 2021方法二: date_formatselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere date_format(date,'%Y%m') = '202108'方法三: date_formatselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere date_format(date,'%y%m') = '2108' 方法四: likeselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere date like '2021-08%' 方法五: substringselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere substring(date,1,7) = '2021-08' 方法六: midselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere mid(date,1,7) = '2021-08'方法七: leftselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere left(date,7) = '2021-08'方法八: substring_indexselect    count(distinct device_id) as did_cnt,    count(device_id) as question_cntfrom question_practice_detailwhere substring_index(date,'-',2) = '2021-08'
点赞 评论 收藏
分享
14 68 评论
分享
牛客网
牛客企业服务