general knowledge Flashcards

1
Q

how many bits in a byte

remember: (The ones and zeros are referred to as bits (short for binary digits).

A

Byte 8 bits

Kilobyte 1,024 bytes

Megabyte 1,024 kilobytes

Gigabyte 1,024 megabytes

Terabyte 1,024 gigabytes

Petabyte 1,024 terabytes

Exabyte 1,024 petabytes

Zettabyte 1,024 exabytes

Yottabyte 1,024 zettabytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What determines a monitor’s resolution?

A

A monitor’s resolution is determined by the number of distinct pixels in each dimension that can be displayed. It’s usually quoted as width × height, with the units in pixels. For instance, “1920 × 1080” means the width is 1920 pixels and the height is 1080 pixels. Here’s what mainly influences a monitor’s resolution:

Panel Size and Type: The physical size of the monitor and the technology behind the panel (like LCD, LED, OLED, etc.) can impact how densely pixels can be packed together, hence affecting resolution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the main component of a system unit?

A

The main component of a system unit in a computer is the motherboard. It serves as the central platform that connects all the components of the computer together, including the CPU (Central Processing Unit), RAM (Random Access Memory), storage devices (like SSDs and HDDs), and expansion cards (such as graphics cards, network cards, and sound cards).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is another name for an OS?

A

Another name for an Operating System (OS) is “platform” or “operating environment.” These terms are often used interchangeably to describe the system software that manages hardware and software resources on a computer, provides common services for computer programs, and enables the user interface and application software to interact with hardware components. The term “platform” is particularly common when discussing the base software environment in contrast to the applications that run on top of it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is a toolchain

A

a collection of tools that work together to perform a complex task or create a software product

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is ECMAScript 2015+ vs es6?

A

ES6 and ES2015 are essentially the same thing. ES6 is the sixth edition of the ECMAScript programming language, which is standardized by ECMA International. ES2015 is simply the new name for ES6, reflecting the year it was released.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is ECMAScript 2015+

A

The latest update on javascript programming. it is the adition of es6 and 2015 is the year it came out.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Babel?

A

Babel is a JavaScript compiler
Babel is a toolchain that is mainly used to convert ECMAScript 2015+ code into a backwards compatible version of JavaScript in current and older browsers or environments. Here are the main things Babel can do for you:

Transform syntax
Polyfill features that are missing in your target environment (through a third-party polyfill such as core-js)
Source code transformations (codemods)
And more! (check out these videos for inspiration)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is eslint?

A

ESLint is a static code analysis tool that helps identify and fix issues in JavaScript code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is stylelint?

A

A mighty CSS linter that helps you avoid errors and enforce conventions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is eslintignore?

A

tells eslint what files in the app to ignore when linting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is stylelint wordpress

A

a CSS linter that can be used with WordPress to ensure that CSS files adhere to WordPress’s CSS Coding Standards:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is webpack

A

Webpack is a free, open-source JavaScript module bundler that helps developers organize and bundle assets into a single output file for use in a browser

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

how do you check what services are running on a specific port?

A

Get-NetTCPConnection -LocalPort [port number] | Select-Object LocalAddress, LocalPort, State, OwningProcess

How well did you know this?
1
Not at all
2
3
4
5
Perfectly