SQL basic interview questions ☆☆☆☆ sorting, deleting, creating temporary tables, etc

SQL basic grammar interview questions The table is designed as follows: domain namedata type Field descriptionremarksClassVarcharclassPKNoVarcharStudent numberPKNameVarcharStudent nameManagervarcharClass cadre Y: Yes N: no domain namedata type Field descriptionremarksClassVarcharclassPKNoVarcharStudent numberPKMathsFloatMathematics achie ...

Posted by BarmyArmy on Fri, 15 Oct 2021 21:15:48 +0200

Concurrent HashMap high frequency interview questions

Because the interview big factory was hanged, I finally made up my mind to make up for it jdk1.7 is a segment lock implementation of segment lock, and 1.8 does not have segment lock Let's talk about the process of putValue: Throw a null pointer if the key is not empty Get table array Judge whether the table is empty. If it is empty, expan ...

Posted by williamZanelli on Wed, 13 Oct 2021 19:41:50 +0200

Scala essence is here, take it, interview is not afraid.

Make complaints about big data left and right hands plus technology Tucao group to get more information preface As an object-oriented functional programming language, Scala combines object-oriented programming with functional programming to make the code more concise, efficient and easy to understand. That's why Scala is popular. As a ...

Posted by Jak on Mon, 11 Oct 2021 03:38:55 +0200

Java thread pool source code analysis

Source code analysis of Java thread pool ThreadPoolExecutor (I) JDK provides a simple way to create thread pools. Different types of thread pools can be created through the API provided by Executors, such as // Create a single thread pool; ExecutorService executor = Executors.newSingleThreadExecutor(); executor.execute(() -> { ...

Posted by PugJr on Sun, 10 Oct 2021 05:49:18 +0200

Front end interview - Vue Router

VueRouter create // 1. Define components const RouterA = { template: `<div>This is Router A</div>` } const RouterB = { template: `<div>This is Router B</div>` } // 2. Create a Router instance const router = new VueRouter({ routes: [ { path: '/a', component: RouterA, }, { path: '/b', comp ...

Posted by Adrianphp on Sat, 09 Oct 2021 10:24:11 +0200

Concurrent Programming - Appendix

appendix In 2014, I have sorted out the relevant java Concurrent Programming interview questions, here as an appendix to reorganize 1.There are three threads: T1, T2 and T3. How can I ensure that T2 executes after T1 and T3 executes after T2? Use join method The function of the join method is to make asynchronous threads execute synchronous ...

Posted by NightCoder on Tue, 05 Oct 2021 18:44:19 +0200

Several ideas derived from stock trading (must see in interview)

  The topic of stock trading algorithm can be said to be a very interesting existence in the basic algorithm. A slight change in the subject may lead to a completely different view of the problem. Don't say much. Let's have a look Given an array price, its second   I elements   prices[i] represents the price of a given stock ...

Posted by joeywoodbury on Sun, 03 Oct 2021 23:10:31 +0200

Sword finger offer (Second Edition) - maximum value of sliding window

PS: Sword finger offer is not only an interview guide that many students will refer to when looking for a job, but also an algorithm Guide (the main reason why it is so popular is that it provides a step-by-step optimization solution, which I think is very friendly). Now many Internet algorithm interview questions can be found here. For the con ...

Posted by samdennis on Fri, 01 Oct 2021 03:08:40 +0200

Java interview_ Zhou Yang

1, Please talk about your understanding of volatile 1. volatile is a lightweight synchronization mechanism provided by Java virtual machine Ensure visibility; Atomicity is not guaranteed; Prohibit instruction rearrangement 2. Talk about JMM (Java memory model) Java Memory model itself is an abstract concept and does not really exist. It de ...

Posted by pradeepmamgain on Thu, 30 Sep 2021 04:21:10 +0200

Java source code - amazing Interviewer: from simple to deep

No, let's start! Guiding language At present, many large factories require handwritten code during the interview. I once saw a large factory require online code during the interview. The topic is: handwritten the implementation of a queue without using the existing Java queue API, and the data structure of the queue, the way to join and leave ...

Posted by haaglin on Wed, 29 Sep 2021 20:42:02 +0200