Midterm Flashcards

1
Q

Linux Command to go to a specific directory

A

cd /path/to/directory

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

command to go to home directory

A

cd ~

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

command to move one up directory level

A

cd ..

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

command to go to previous directory

A

c -

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

command to go to root directory

A

c /

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

syntax to rename

A

mv [old_name] [new_name]

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

syntax to move a file to different directory

A

mv file-name.txt/path/to/directory/

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

syntax to copy a file

A

cp file.txt/path/to/directory/

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

copying a remote repository

A

git clone

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

create a new repository

A

git add <file-name></file-name>

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

uploading local changes

A

git push origin <branch-name></branch-name>

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

REST API meaning

A

Representational State Transfer

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

CRUD Operations

A

Get, Push, Put, Patch , Delete

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

Define a set of constraints and guidelines for creating scalable, stateless, and efficient web services.

A

REST principles

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

Issued by a server in response to a clients request made to the server

A

Status Code

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

Responsible for handling incoming http, processing them, and returning appropriate http problems.

A

Rule of Controller

17
Q

Refers to a central component in mobile app development responsible for managing the user interface

A

Model View Controller

18
Q

Represent the actions that happens within the system

19
Q

Is an organized collection of data that is stored and managed electronically

20
Q

Refers to the process of accessing and obtaining data from a database

21
Q

A cross platform foodchain for developing, building , running, and publishing .Net applications

A

.NET Commanda

22
Q

Typically involves creating an API end point

A

Return Json Files

23
Q

The entry point of an API .NetCore application

A

Program.cs

24
Q

Responsible for configuring services and the application request pipelines

A

startup.cs

25
Q

use for storing configuration in a structured format

A

appsetting

26
Q

use to configure how the application is launched during the development

A

launchsetting

27
Q

A special method that is called when an instance object of a class is created

A

Constructors