交通银行【一二面】面经

1. 一面的形式是线上无领导小组面试:题目是: 如何看待鸿星尔克现象 一组12人左右, 讨论加总结共30分钟。
2. 一周左右收到二面(群面):30多人一组,一共有12位的面试官。全程大约1小时

1、首先是每人一分多钟的自我介绍。
2、面试官提问每人一个问题, 会优先问实习经历。有一些同学被问到: 为什么选择银行; 介绍一些你的家乡; 你对交行有什么了解等


通过之后会有差额体检,以前没听过哈哈哈,面试的时候挺尴尬的,有的实习经历讲的不是很好,不过面试官都很好的,祝大家都成功啊!
#2022秋招##交通银行##面试题目#
全部评论
请问是哪边分行 什么岗位
1 回复 分享
发布于 2021-10-20 22:49
我也很好奇,为什么非技术岗也来牛客,牛客不是程序猿的app吗
点赞 回复 分享
发布于 2021-11-13 14:31
三十多人也太离谱了
点赞 回复 分享
发布于 2021-11-01 18:57
二面是线下吗
点赞 回复 分享
发布于 2021-10-28 20:01
为啥我今天刚收到交行的笔试通知。。。。。。。
点赞 回复 分享
发布于 2021-10-20 20:34
你这是非技术岗吧?
点赞 回复 分享
发布于 2021-10-20 14:43
交行什么部门啊
点赞 回复 分享
发布于 2021-10-20 13:26

相关推荐

07-28 15:15
门头沟学院 Java
面试八股环节还好,但是我是力扣战士,面试官让在编译器上写代码类都不会怎么写了,两个算法,字母异位词和策略模式,只写了方法,力扣战士凉透了,希望大家平时还是要在编译器上做题策略模式等一些设计模式,希望大家也进行默写,别像我一样会背不会写字母异位词import java.util.*;public class Main {public static List<List<String>> groupAnagrams(String[] strs) {// 用于存储分组结果的映射,键为排序后的字符串,值为对应的字符串列表Map<String, List<String>> anagramGroups = new HashMap<>();for (String s : strs) {// 将字符串转换为字符数组并排序char[] chars = s.toCharArray();Arrays.sort(chars);String sortedStr = new String(chars);// 如果映射中不存在该键,则创建一个新的列表anagramGroups.computeIfAbsent(sortedStr, k -> new ArrayList<>());// 将当前字符串添加到对应的列表中anagramGroups.get(sortedStr).add(s);}// 返回映射中的所有值(即所有分组)return new ArrayList<>(anagramGroups.values());}public static void main(String[] args) {// 示例输入String[] strs = {"eat", "tea", "tan", "ate", "nat", "bat"};// 调用方法获取分组结果List<List<String>> result = groupAnagrams(strs);// 输出结果for (List<String> group : result) {System.out.println(group);}}}策略模式// 支付策略接口interface PaymentStrategy {void pay(double amount);}// 微信支付实现class WechatPay implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("使用微信支付:" + amount + "元");// 微信支付具体实现逻辑}}// 支付宝实现class Alipay implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("使用支付宝支付:" + amount + "元");// 支付宝支付具体实现逻辑}}// 银行卡支付实现class BankCardPay implements PaymentStrategy {@Overridepublic void pay(double amount) {System.out.println("使用银行卡支付:" + amount + "元");// 银行卡支付具体实现逻辑}}// 支付上下文(策略持有者)class PaymentContext {private PaymentStrategy strategy;public PaymentContext(PaymentStrategy strategy) {this.strategy = strategy;}public void setStrategy(PaymentStrategy strategy) {this.strategy = strategy;}public void executePayment(double amount) {strategy.pay(amount);}}// 主类和测试代码public class Main {public static void main(String[] args) {// 创建支付上下文PaymentContext context = new PaymentContext(new WechatPay());// 使用微信支付context.executePayment(100.0);// 切换为支付宝支付context.setStrategy(new Alipay());context.executePayment(200.0);// 切换为银行卡支付context.setStrategy(new BankCardPay());context.executePayment(300.0);}}
查看2道真题和解析
点赞 评论 收藏
分享
评论
2
7
分享

创作者周榜

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