浙江大华股份测开二面面经

男面试官,面试风格很温和,全程没有压力部分,时长25分钟左右

1,为什么选择测试开发这个岗位?

2,你的课题数据集有哪些构成,图片大概是什么样的?

3,商城项目是实习做的,还是自己找的开源代码?

4,软件测试开发的流程是什么?

5,对自行车外轮胎进行测试点的设计?

6,你在python自动化框架中使用了哪些库?有啥作用?

7,python中如何读取json文件?

8,sql语句中,查询结果排序用什么?分组用什么?having和where有什么区别?

9,linux中查看内存和资源占用率?修改ip地址应该用什么命令?

反问环节,一共三面,然后两轮技术面,一轮hr面,7个工作日给结果,不要求强制提前实习,发的是正式批offer,试用期有考核,但是基本上不怎么淘汰(除个别极端情况)

#发面经攒人品##我的求职进度条#
全部评论
祝佬顺利啊
点赞 回复 分享
发布于 昨天 22:36 安徽
式试我司AAC瑞声科技😘
点赞 回复 分享
发布于 昨天 11:12 黑龙江

相关推荐

昨天 17:04
广东工业大学 C++
有大神能教一下菜菜嘛?求二叉树的最小值节点和最大值节点的距离看了答案知道了用lca+depth的方式做,但是我很好奇我为什么是wa呜呜呜package org.example;import java.util.*;public class Solution {/*** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可*** @param root TreeNode类 树的根节点* @return int整型*/int max = Integer.MIN_VALUE;int min = Integer.MAX_VALUE;public void getMaxMin(TreeNode root){if(root==null){return ;}max =Math.max(max,root.val);min =Math.min(min,root.val);getMaxMin(root.left);getMaxMin(root.right);}Map<TreeNode,Integer> mapmin = new HashMap<>();Map<TreeNode,Integer> mapmax = new HashMap<>();public boolean getparent(TreeNode root,int target,Map<TreeNode,Integer> map){if (root==null){return false;}if(root.val==target){map.put(root,0);return true;}boolean t1 = getparent(root.left,target,map);boolean t2 = getparent(root.right,target,map);if (t1){map.put(root ,map.get(root.left)+1);return true;}else if (t2){map.put(root ,map.get(root.right)+1);return true;}else{return false;}}public int getDis (TreeNode root) {// write code hereTreeNode temp = root;getMaxMin(temp);temp = root;getparent(temp,min,mapmin);temp = root;getparent(temp,max,mapmax);int minpar = Integer.MAX_VALUE;TreeNode targetNode = null;for (TreeNode treeNode : mapmin.keySet()) {if (mapmax.containsKey(treeNode)&&minpar>mapmax.get(treeNode)   ){minpar=mapmax.get(treeNode);targetNode = treeNode;}}return mapmax.get(targetNode) + mapmin.get(targetNode);}}
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

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