Skip to content

Commit c6b2ec5

Browse files
authored
Merge pull request #18 from PriyanshuKumarSinha/feat-add-questions
added some better questions :)
2 parents ce7bc1c + b5e6c54 commit c6b2ec5

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

questions_acronyms.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,9 @@
4040
'What does SVG stand for? What is it?', # Scalable Vector Graphics, an XML based way of rendering 2D graphics.
4141
'What does JSON stand for? What is it?', # JavaScript Object Notation, a machine readable format for transporting data between computer programs.
4242
'What does BEM stand for? What is it? \ninspired from a #modernweb meetup talk by @BrandonMathis at @pendoio', # Block Element Modifier
43+
'What does VDU stand for? What is it?', # Visual Display Unit , Monitor
44+
'What does ISCII stand for? What is it?', # Indian Standard Code for Information Interchange
45+
'What does FIT stand for? How is FIT different from IT?', # Foundation of Information Technology
46+
'What does SQL stand for? What is it?', # Structured Query Language
47+
4348
]

questions_back_end.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@
5454
'What are tests for? \n\ninspired by @Treybastian', #
5555
'Why is readability so important? \n\ninspired by @Treybastian', #
5656
'Why should you avoid single letter variables? \n\ninspired by @Treybastian @cjtaylor2390', # readability
57-
57+
'What is a model?', #
58+
'What is abstraction?', #
59+
'What are the advanced functions in python?', # map(), filter(), reduce()
60+
'What is python best at?', #
5861

5962
# Real life examples
6063
'What is a real life example of "exception handling"?', #

questions_front_end.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
'How do you make a link open in a new tab?', # target="_blank"
3838
'Why should you add rel="noreferrer" to a target="_blank"? \n\ninspired by a tweet from @addyosmani', # https://twitter.com/addyosmani/status/1234055782896979968
3939
'What is lazy loading? What\'s it used for?', # https://twitter.com/addyosmani/status/1227619409625174016?s=20
40+
'What is the difference between SASS and SCSS?', #
41+
'How would you stop divs from overlaying after using position absolute?', #
42+
4043

4144
# Real life examples
4245
'What is a real life example of "lazy loading"? \n\ninspired by a tweet from @addyosmani', #

questions_pop_culture.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
'In "Silicon Valley" Season 3 Episode 1, what language is being used?\n@SiliconHBO', # https://www.reddit.com/r/SiliconValleyHBO/comments/4gbra7/i_got_the_silicon_valley_s03e01_code_to_compile/)
1616
'What day is celebrated as Programmer\'s day? Why?\n#ProgrammersDay', #
1717
'🐠In Mr. Robot, what is the name of Elliot\'s betta fish? @whoismrrobot #MrRobot', # Qwerty
18+
'Why is Hacktoberfest done only once in a year? @Hacktoberfest #Hacktoberfest2020', #
1819
# 'something... \n\n@HaltAMC #HaltandCatchFire', #
1920
# 'something... \n\n@ZoeysPlaylist #ZoeysPlaylist', #
2021
# 'something... \n\n@Devs_FXonHulu #Devs #FXonHulu', #

questions_version_control.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@
2323
'What is the difference between merge and rebase', #
2424
'What makes a good commit message?', # tells why you made a change https://dev.to/yvonnickfrin/a-guide-on-commit-messages-d8n
2525
'What are examples of software that can be used for version control other than git?', # SVN
26-
'What is a real life example of version control?', #
26+
'What is a real life example of version control?', #
27+
'What is a branch? Why do you need to make a branch?', #
28+
'What is the difference between a fix and a hotfix?', #
29+
'What is a master branch?', #
2730
]

0 commit comments

Comments
 (0)