2023春招江西电信面试(宜春)二面

#春招##江西电信##二面#
1.2分钟自我介绍
2.对岗位的了解,自己的优势是什么?
3.做了哪些项目,用的是什么语言,有没有上线使用?
4.性格、兴趣爱好
5.期望薪资、问我宜春哪个县的?考虑在丰城(我是丰城人)还是宜春市其它县区?

反问环节
1.培训方案和实习时长(6个月)
2.是否为新员工提供住宿(不在丰城工作会提供住宿)
全部评论
你好,我也投了宜春的,能方便加微信聊一下吗
点赞 回复 分享
发布于 2023-10-10 19:30 广东
你好 可以加个联系方式嘛 我也想回江西电信上班
点赞 回复 分享
发布于 2023-09-11 21:27 重庆
楼主有结果了吗
点赞 回复 分享
发布于 2023-05-17 21:01 江苏
楼主投的什么岗位
点赞 回复 分享
发布于 2023-05-16 15:36 福建
面试用了多久
点赞 回复 分享
发布于 2023-05-16 15:27 重庆

相关推荐

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;        }    }}
点赞 评论 收藏
分享
评论
1
5
分享

创作者周榜

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