指针与引用的区别 考察margin塌陷 考察C++继承和~符号 考察TCP通讯过程 位码 三次握手 为什么不是两次握手 为什么不是四次握手 四次挥手 为什么要四次握手 TCP的状态 考察严格模式 进程/线程同步的方式 C++ 计算机网络 HTTP2的新特性有哪些? 状态码总结 200与304的区别 进程/线程同步 考察JavaScript单线程 考察IPV6 考察协议 考察cookie的缺点 考察JavaScript单线程 JavaScript题目 考察nodejs 考察UDP的首部头 考察TC…
考察encodeURI encodeURI(), decodeURI()它们都是Global对象的方法. encodeURI()通过将某些字符的每个实例替换代表字符的UTF-8编码的一个或多个转义字符来编码URI.规则如下: 不会编码保留字符 ; , / ? : @ & = + $ 不会编码未转义的字符:字母,十进制数字以及- _ . ! ~ * ' ( ) 不会编码Number sign:# 需要注意:由于'&', '+', '='未被编码,在GET和POST请求中被视为特殊字符,所以e…
2014年3月31日晚,我怀着稍微忐忑的心情(第一次在线笔试^_^!!)进行了笔试.阿里巴巴的笔试题共同拥有10道,差点儿包括了Web前端开发的各个方面,有程序题.有叙述题.时间很紧张,仅仅完毕了大概6道题. 以下把遇到的题目跟大家分享一下! 1. <pre name="code" class="html"><!doctype html> <html> <head> <style type="text/…
代码: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int num[]=new int[n];//用户输入的数组 int b[]=new int[n];//复制num int c[]=new int[n];//依次保存最小值下标(第1小.第2小.第3小…
简述 上周有幸参加TFC腾讯Web前端大会,见识了各路前端大神的精彩演讲,干货满满的.会议流程分为上午主会场,以及下午的三个分会场.分享的主题涵盖Web新技术.Node.js.框架.工程化. 图形处理等前端前沿内容 ,还包含极致的性能优化.海量用户运营等具有腾讯前端特色的宝贵经验,具有很好的实践参考价值.前端在近几年的快速发展,从简单的页面演变成越来越复杂的Web应用,为应对这种庞大的业务开发,产生出各式各样的工具来提高开发效率,如前端框架的革新以及前端走向工程化,通过业务来驱动技术发展,以技术…
转自:Web前端开发-Web前端工程师 » 腾讯Web前端开发框架JX(Javascript eXtension tools) JX – Javascript eXtension tools 一个类似 Google Closure Library 的 Web 前端开发框架,服役于 WebQQ 等大规模的 WebApp简介JX 是模块化的非侵入式Web前端框架,最新开源地址:https://github.com/AlloyTeam/JX. JX 框架同时适用于 Web Page 和 Web App…
Microsoft 2013校园招聘笔试题及解答 题目是自己做的,求讨论.吐槽.拍砖 1.      Which of the following callingconvension(s) support(s) support variable length parameter(e.g. printf)? (3Points) A.     cdecl            B. stdcall           C.pascal          D.     fastcall 分析:<来自百…
Microsoft2013校园招聘笔试题 继续求拍砖!!!! 1. You are managing the database of a book publichser, you currently store the book orders your company receives in the following BookOrders table. You manager has asked you to generate a report to list all the orders w…
2014 WAP校园招聘笔试题 Problem's Link:   http://www.doc88.com/p-6751117015483.html WAP公司笔试题 We are planning an orienteering game. The aim of this game is to arrive at the goal (G) from the start (S) with the shortest distance. However, the players have to p…
Web前端开发工程师面试题1.说说css的优先级?2.在移动端中,常常使用tap作为点击事件,好处是?会带来什么问题?3.原生JS的window,onload与Jquery的$(document).ready(function(){})有什么不同4.看下面的代码输出什么,foo的值为什么?var foo = "11"+2-"1";console.log(foo);console.log(typeof foo);5.如何优化一个网站,可从dom,css,js等几个方面…