Skip to content

Commit 2ed9ecb

Browse files
committed
content table reformatting
1 parent e1ab76e commit 2ed9ecb

File tree

1 file changed

+31
-56
lines changed

1 file changed

+31
-56
lines changed

basic-questions.md

Lines changed: 31 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -2,62 +2,37 @@
22

33
## কন্টেন্ট সূচি
44

5-
- [Golang Interview Questions and Answers (BASIC)](#golang-interview-questions-and-answers-basic)
6-
- [কন্টেন্ট সূচি](#কন্টেন্ট-সূচি)
7-
- [১। What is scope?](#১-what-is-scope)
8-
- [উদাহরণ](#উদাহরণ)
9-
- [২। What is block?](#২-what-is-block)
10-
- [উদাহরণ: (Nested Block Scope)](#উদাহরণ-nested-block-scope)
11-
- [৩। How many types of scopes are there available on Golang?](#৩-how-many-types-of-scopes-are-there-available-on-golang)
12-
- [৪। What is the standard or named function?](#৪-what-is-the-standard-or-named-function)
13-
- [উদাহরণ](#উদাহরণ-1)
14-
- [৫। What is anonymous function?](#৫-what-is-anonymous-function)
15-
- [উদাহরণ](#উদাহরণ-2)
16-
- [৬। What is expression?](#৬-what-is-expression)
17-
- [উদাহরণ](#উদাহরণ-3)
18-
- [৭। What is function expression?](#৭-what-is-function-expression)
19-
- [উদাহরণ](#উদাহরণ-4)
20-
- [৮। What is immediately invoked function expression (IIFE)?](#৮-what-is-immediately-invoked-function-expression-iife)
21-
- [উদাহরণ](#উদাহরণ-5)
22-
- [৯। Difference between arguments and parameters](#৯-difference-between-arguments-and-parameters)
23-
- [উদাহরণ](#উদাহরণ-6)
24-
- [১০। What is first-class function or higher-order function?](#১০-what-is-first-class-function-or-higher-order-function)
25-
- [উদাহরণ](#উদাহরণ-7)
26-
- [১১। Difference between first-order function and higher-order function](#১১-difference-between-first-order-function-and-higher-order-function)
27-
- [১২। Difference between first order logic and higher order logic](#১২-difference-between-first-order-logic-and-higher-order-logic)
28-
- [১৩। What is callback function?](#১৩-what-is-callback-function)
29-
- [উদাহরণ](#উদাহরণ-8)
30-
- [১৪। What is the first-class citizen?](#১৪-what-is-the-first-class-citizen)
31-
- [১৫। What is init function?](#১৫-what-is-init-function)
32-
- [উদাহরণ](#উদাহরণ-9)
33-
- [১৬। Difference between compile time and run time](#১৬-difference-between-compile-time-and-run-time)
34-
- [**কম্পাইল টাইম (Compile Time):**](#কম্পাইল-টাইম-compile-time)
35-
- [**রান টাইম (Run Time):**](#রান-টাইম-run-time)
36-
- [১৭। What is escape analysis?](#১৭-what-is-escape-analysis)
37-
- [উদাহরণ](#উদাহরণ-10)
38-
- [১৮। Describe 2 phases of running a Go program](#১৮-describe-2-phases-of-running-a-go-program)
39-
- [উদাহরণ](#উদাহরণ-11)
40-
- [১৯। What is closure in Go?](#১৯-what-is-closure-in-go)
41-
- [উদাহরণ](#উদাহরণ-12)
42-
- [২০। What is struct in Go?](#২০-what-is-struct-in-go)
43-
- [উদাহরণ](#উদাহরণ-13)
44-
- [২১। What is an instance?](#২১-what-is-an-instance)
45-
- [উদাহরণ](#উদাহরণ-14)
46-
- [২২। What are member variables?](#২২-what-are-member-variables)
47-
- [উদাহরণ](#উদাহরণ-15)
48-
- [২৩। What is instantiation?](#২৩-what-is-instantiation)
49-
- [উদাহরণ](#উদাহরণ-16)
50-
- [২৪। What is the receiver function?](#২৪-what-is-the-receiver-function)
51-
- [উদাহরণ](#উদাহরণ-17)
52-
- [২৫। Difference between expression and statement](#২৫-difference-between-expression-and-statement)
53-
- [পার্থক্য সংক্ষেপে](#পার্থক্য-সংক্ষেপে)
54-
- [উদাহরণ](#উদাহরণ-18)
55-
- [২৬। what is pointer? And difference between pass by value vs pass by reference](#২৬-what-is-pointer-and-difference-between-pass-by-value-vs-pass-by-reference)
56-
- [উদাহরণ](#উদাহরণ-19)
57-
- [২৭। Difference between pass by value vs pass by reference](#২৭-difference-between-pass-by-value-vs-pass-by-reference)
58-
- [উদাহরণ](#উদাহরণ-20)
59-
- [উদাহরণ](#উদাহরণ-21)
60-
- [পার্থক্য সংক্ষেপে](#পার্থক্য-সংক্ষেপে-1)
5+
## কন্টেন্ট সূচি
6+
7+
| # | প্রশ্ন | উদাহরণ |
8+
|----|------------------------------------------------------|------------|
9+
|| [What is scope?](#১-what-is-scope) | [উদাহরণ](#উদাহরণ) |
10+
|| [What is block?](#২-what-is-block) | [উদাহরণ: (Nested Block Scope)](#উদাহরণ-nested-block-scope) |
11+
|| [How many types of scopes are there in Golang?](#৩-how-many-types-of-scopes-are-there-available-on-golang) | |
12+
|| [What is the standard or named function?](#৪-what-is-the-standard-or-named-function) | [উদাহরণ](#উদাহরণ-1) |
13+
|| [What is anonymous function?](#৫-what-is-anonymous-function) | [উদাহরণ](#উদাহরণ-2) |
14+
|| [What is expression?](#৬-what-is-expression) | [উদাহরণ](#উদাহরণ-3) |
15+
|| [What is function expression?](#৭-what-is-function-expression) | [উদাহরণ](#উদাহরণ-4) |
16+
|| [What is immediately invoked function expression (IIFE)?](#৮-what-is-immediately-invoked-function-expression-iife) | [উদাহরণ](#উদাহরণ-5) |
17+
|| [Difference between arguments and parameters](#৯-difference-between-arguments-and-parameters) | [উদাহরণ](#উদাহরণ-6) |
18+
| ১০ | [What is first-class function or higher-order function?](#১০-what-is-first-class-function-or-higher-order-function) | [উদাহরণ](#উদাহরণ-7) |
19+
| ১১ | [Difference between first-order function and higher-order function](#১১-difference-between-first-order-function-and-higher-order-function) | |
20+
| ১২ | [Difference between first-order logic and higher-order logic](#১২-difference-between-first-order-logic-and-higher-order-logic) | |
21+
| ১৩ | [What is callback function?](#১৩-what-is-callback-function) | [উদাহরণ](#উদাহরণ-8) |
22+
| ১৪ | [What is the first-class citizen?](#১৪-what-is-the-first-class-citizen) | |
23+
| ১৫ | [What is init function?](#১৫-what-is-init-function) | [উদাহরণ](#উদাহরণ-9) |
24+
| ১৬ | [Difference between compile time and run time](#১৬-difference-between-compile-time-and-run-time) | [কম্পাইল টাইম](#কম্পাইল-টাইম-compile-time), [রান টাইম](#রান-টাইম-run-time) |
25+
| ১৭ | [What is escape analysis?](#১৭-what-is-escape-analysis) | [উদাহরণ](#উদাহরণ-10) |
26+
| ১৮ | [Describe 2 phases of running a Go program](#১৮-describe-2-phases-of-running-a-go-program) | [উদাহরণ](#উদাহরণ-11) |
27+
| ১৯ | [What is closure in Go?](#১৯-what-is-closure-in-go) | [উদাহরণ](#উদাহরণ-12) |
28+
| ২০ | [What is struct in Go?](#২০-what-is-struct-in-go) | [উদাহরণ](#উদাহরণ-13) |
29+
| ২১ | [What is an instance?](#২১-what-is-an-instance) | [উদাহরণ](#উদাহরণ-14) |
30+
| ২২ | [What are member variables?](#২২-what-are-member-variables) | [উদাহরণ](#উদাহরণ-15) |
31+
| ২৩ | [What is instantiation?](#২৩-what-is-instantiation) | [উদাহরণ](#উদাহরণ-16) |
32+
| ২৪ | [What is the receiver function?](#২৪-what-is-the-receiver-function) | [উদাহরণ](#উদাহরণ-17) |
33+
| ২৫ | [Difference between expression and statement](#২৫-difference-between-expression-and-statement) | [উদাহরণ](#উদাহরণ-18), [পার্থক্য সংক্ষেপে](#পার্থক্য-সংক্ষেপে) |
34+
| ২৬ | [What is pointer? And difference between pass by value vs pass by reference](#২৬-what-is-pointer-and-difference-between-pass-by-value-vs-pass-by-reference) | [উদাহরণ](#উদাহরণ-19) |
35+
| ২৭ | [Difference between pass by value vs pass by reference](#২৭-difference-between-pass-by-value-vs-pass-by-reference) | [উদাহরণ](#উদাহরণ-20), [উদাহরণ](#উদাহরণ-21), [পার্থক্য সংক্ষেপে](#পার্থক্য-সংক্ষেপে-1) |
6136

6237
## ১। What is scope?
6338

0 commit comments

Comments
 (0)