同花顺测试二面10.8

面试官很好,一直引导深入,是我太菜呜呜
先问实习:
测试了什么,功能怎么测
用过哪些工具
压测的指标,性能测试的内容,怎么看
有没有用过自动化,怎么测
怎么自动化实现观察window下的CPU和内存占用
自动化怎么实现
接口自动化指标,怎么处理异常,结果怎么分析,怎么多并发实现访问
问c:
堆和栈的区别
什么时候用堆,什么时候用栈
分配内存,我回答malloc,问了malloc的缺点
问了指针的作用,优点
线程和进程的区别,为什么进程切换开销大
问Python:
Python和c的区别,哪个运行更快,为什么c运行快
Python中包的定义,有没有自己写过
包和c中的那个概念比较像
有没有用过第三方库
问了urllib,怎么实现get请求
怎么测试一个函数的耗时
Python和c多线程的区别,回了单核
再问怎么用Python实现多核
编程题:实现数组向右轮转,写了一种方式后让多些几种实现方式

全部评论
问了这么多呀
1 回复 分享
发布于 2022-10-09 11:10 陕西

相关推荐

@Entry@Componentstruct Index {  @State message: string = 'Hello World';  build() {    Column() {    //顶部区域      Row(){        Image($r('app.media.ic_public_cancel'))          .width(20)          .fillColor(Color.White)        Text('帮助')          .fontSize(16)          .fontColor(Color.White)      }.justifyContent(FlexAlign.SpaceBetween)      .width('100%')      //logo图片      Image($r('app.media.APP'))        .width(250)        .height(250)      //国家/地址      Row(){        Text('国家/地址')          .fontColor(Color.Gray)          .layoutWeight(1)        Text('中国(+86)')          .fontColor(Color.Gray)          .margin({            right:5          })        Image($r('app.media.swore_right'))          .width(16)          .fillColor(Color.Gray)      }      .width('100%')      .height(40)      .backgroundColor(Color.White)      .justifyContent(FlexAlign.SpaceBetween)      .borderRadius(20)      .padding({        right:10,        left:15      })      .margin({        top:5,        bottom:20      })      //电话号码     TextInput({placeholder:'请输入电话号码'})       .backgroundColor(Color.White)       .width('100%')       .height(40)       .borderRadius(20)       .margin({         bottom:20       })      //协议      Row(){        Checkbox()          .unselectedColor(Color.White)          .width(10)          .margin({            top:0          })         Text(){          Span('我已阅读并同意')          Span('《隐私政策》')            .fontColor(Color.Red)          Span('《用户服务协议》')            .fontColor(Color.Red)          Span('未注册的电话号码将会创建账号')         }         .fontSize(12)         .fontWeight(FontWeight.Bold)         .height(20)      }      //登录按钮      Button('登录')        .margin({          top:35        })        .height(40)        .width('100%')        .backgroundColor(Color.Red)      //其他      Row(){        Text('新用户注册')          .fontColor(Color.Black)          .fontSize(14)        Text('账户密码登录')          .fontColor(Color.Black)          .fontSize(14)        Text('无法登陆')          .fontColor(Color.Black)          .fontSize(14)      }      .margin({        top:10      })      .width('95%')      .justifyContent(FlexAlign.SpaceBetween)     //底部      Blank()      Column(){        Text('其他登录方式')          .fontSize(14)          .height(22)          .fontWeight(FontWeight.Bold)        Row(){          Image($r('app.media.HUAWEI_logo'))            .width(40)          Image($r('app.media.weibo_logo'))            .width(34)            .fillColor('#ffff1700')          Image($r('app.media.WeChat_logo'))            .width(34)            .fillColor('#ff23ff00')          Image($r('app.media.QQ_logo'))            .width(34)            .fillColor('#ff0099fc')        }        .margin({          top:28,          bottom:20        })        .width('100%')        .justifyContent(FlexAlign.SpaceBetween)      }    }    .padding(20)    .width('100%')    .height('100%')    .backgroundImage($r('app.media.background1'))    .backgroundImageSize(ImageSize.Cover)  }}
点赞 评论 收藏
分享
1 16 评论
分享
牛客网
牛客企业服务