-
-
Notifications
You must be signed in to change notification settings - Fork 165
Add cross-interview documentation #316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Margaryta-Maletz
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
В целом хорошо.
Но мне не понятно, мы просто рекомендуем менторам самостоятельно проводить такую активность или добавляем обязательное задание, суть которого ментор организовывает интервью для своих студентов и выставляет им отметки. Во втором случае механизм не раскрыт.
|
И еще детали от Маргариты Из тем которые отметили как сложные для студентов я выдернула следующие:
Получается довольно приличный список обсуждение которого займет много времени. Предлагаю разбить список как минимум на 3 части и начать с выделенных вопросов. С помощью чата GPT подготовила два списка вопросов, по которым студенты могут готовиться и задавать друг другу. Списки конечно совсем простые получились... Но от этого можно отталкиваться. List 1
console.log(a);
let a = 5;
foo();
function foo() {
console.log('Hello');
}
var x = 10;
function test() {
var x = 20;
console.log(x);
}
test();
console.log(x);
function outer() {
let a = 1;
function inner() {
let b = 2;
console.log(a + b);
}
inner();
}
outer();
function change(obj) {
obj.value = 10;
}
let a = { value: 5 };
change(a);
console.log(a.value);
let x = 1;
function foo() {
let x = 2;
function bar() {
console.log(x);
}
bar();
}
foo();
let a = 1;
function first() {
let b = 2;
function second() {
console.log(a + b);
}
second();
}
first();
function makeAdder(x) {
return function(y) {
return x + y;
};
}
const add5 = makeAdder(5);
console.log(add5(2));List 2
console.log(b);
let b = 3;
console.log(bar);
var bar = 7;
let y = 5;
function demo() {
y = 15;
console.log(y);
}
demo();
console.log(y);
let x = 10;
function a() {
let x = 20;
function b() {
console.log(x);
}
b();
}
a();
function modify(num) {
num = 100;
}
let b = 50;
modify(b);
console.log(b);
let y = 3;
function outer() {
let y = 4;
function inner() {
console.log(y);
}
return inner;
}
const fn = outer();
fn();
function foo() {
console.log(this);
}
let z = 5;
function alpha() {
function beta() {
console.log(z);
}
beta();
}
alpha();
function counter() {
let count = 0;
return function() {
count++;
return count;
};
}
const c = counter();
console.log(c());
console.log(c()); |
Co-authored-by: Margarita <[email protected]>
Co-authored-by: Margarita <[email protected]>
Co-authored-by: Margarita <[email protected]>
Co-authored-by: Margarita <[email protected]>
Co-authored-by: Margarita <[email protected]>
No description provided.