测开补录-小米+爱奇艺-凉经

半个月前面的了,感觉春招末期都是拷打实习多,八股跟算法比较少了。两家问的大差不差,合一起写吧

【八股部分】
TCP、UDP区别
进程与线程的区别

【设计用例】
追剧的广告功能进行设计

【算法】
长度最长的字符

【实习】
1、讲讲你是怎么mock数据的(答偏了,估计不满意没追问)
2、介绍印象深刻的bug(会追问,深入拷打
3、有没有参与过AI辅助测试,你是怎么做的,遇到过什么问题,怎么解决(会追问,深入拷打
4、自动化测试相关等

【项目】


【总结】这个阶段🐭🐭遇到的面试基本都是拷打实习深度了跟业务匹配度,八股偏少甚至没有,总时长30-60分钟。基本没有废话环节,针对感兴趣的实习经历一条条提问拷打,然后结束,如果不匹配或者不想要🐭的话,在反问环节能明显感受到对方的态度。如压根不想介绍组内业务,或无反问环节直接结束等情况。

最后,🐭🐭目前还有俩流程中的,面经后面再更,许愿许愿都能走到hr面吧



#面试问题记录#
全部评论
祝好运
点赞 回复 分享
发布于 06-02 23:42 上海
祝好运
点赞 回复 分享
发布于 06-02 23:38 上海
加油,美好的明天在等着你。
点赞 回复 分享
发布于 06-01 20:02 北京
希望老哥顺利上岸
点赞 回复 分享
发布于 06-01 14:31 上海

相关推荐

06-22 22:50
河南大学 C++
//现有一链表的头指针 ListNode* pHead,给一定值x,//编写一段代码将所有小于x的集中于前半部分,大于x的集中于后半部分,//若链表内有x则居于中间,没有则不显示//且不能改变原来的数据相对顺序,返回重新排列后的链表的头指针。//示例 x=5//1 6 2 7 3 5 9 8  (5)-->1 2 3 5 6 7 9 8//1 6 2 7 8 5 9 3  (5)-->1 2 3 5 6 7 8 9 //1 2 3 (5)-->1 2 3//6 7 8 (5)--->6 7 8//5 5 5 (5)--->5 5 5 ListNode* Partition(ListNode* phead,int x){    ListNode* smallhead = NULL;    ListNode* smallx = NULL;    ListNode* bighead = NULL;    ListNode* bigx = NULL;    ListNode* flaghead = NULL;    ListNode* flagx = NULL;    if (phead == NULL)        return NULL;    while (phead)    {        if (phead->val < x)        {            if (smallhead == NULL)            {                smallx = phead;                smallhead = smallx;            }            else            {                smallx->next = phead;                smallx = smallx->next;            }        }        else if (phead->val > x)        {            if (bighead == NULL)            {                bigx = phead;                bighead = bigx;            }            else            {                bigx->next = phead;                bigx = bigx->next;            }        }        else        {            if (flaghead == NULL)            {                flagx = phead;                flaghead = flagx;            }            else            {                flagx->next = phead;                flagx = flagx->next;            }        }        phead = phead->next;    }    if(bigx)    bigx->next = NULL;    if (flaghead != NULL)    {        if (smallhead == NULL)        {            flagx->next = bighead;            return flaghead;        }        else        {            smallx->next = flaghead;            flaghead->next = bighead;            return smallhead;        }    }    else    {        if (smallhead == NULL)        {            return bighead;        }        else        {            smallx->next = bighead;            return smallhead;        }    }}
点赞 评论 收藏
分享
评论
4
2
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务