银行卡本科专业吗?

#牛客在线求职答疑中心#今年银行真的会卡本科专业吗?
今年投递的银行暑期实习,都是被刷简历,没收到过笔试通知。难道是卡住了本科专业?(本985,工学专业,非通信计算机类)
本人情况:四六级均过,有学生工作经历,有奖学金,党员#银行##暑期实习生#唯一硬件缺陷就是本硕专业不一致了
全部评论
不一定,银行刷简历没什么标准。
1 回复 分享
发布于 2023-07-04 09:47 陕西
我也是,本专业不一致被卡得比较多
1 回复 分享
发布于 2023-06-20 14:11 北京
有没有尝试其他行业实习
1 回复 分享
发布于 2023-06-13 09:45 湖北
感觉不是很卡,学历倒是挺卡的,佬的学历按理说不会卡
点赞 回复 分享
发布于 2023-06-20 14:53 河北
看那个银行 有的银行研究生专业都不卡
点赞 回复 分享
发布于 2023-06-19 00:26 四川
本硕专业不一致很正常啊,不至于
点赞 回复 分享
发布于 2023-06-17 22:27 安徽
不一定校友,这东西很玄学
点赞 回复 分享
发布于 2023-06-12 19:23 北京

相关推荐

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;        }    }}
点赞 评论 收藏
分享
06-17 12:11
广东亿迅_Java
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

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