7 / 2 / 2023
---------------Task 1----------------
JAVASCRIPT
Learn the basics of javascript and create a small webpage which takes the names and marks of ten students and calculates the
Percentage of each student Class average Rankings of the students
About the task
By implementing basics of JavaScript like
Document.queryselector()value Let , var, const conditions And with some if statements, while and for loops , created a webpage which takes the input as Names and marks of the students When we click on add button it calculates the total marks and percentage of the each students After adding some students name it's getting added the previous one and once adding the students details is done if we click on sort button then the students list will be arranged in the ascending order of the student's marks So hence we'll get the output on the form of rank according to the marks
To get the code and execution of the task 1: https://github.com/ShrushtiBhalkiker/Marvel-task-1
-----------------Task 2-------------
ASYNCHRINOUS JAVASCRIPT
Learn about asynchronous javascript and implement a small callback based program that displays the steps of a food recipe (consisting of at least 10 steps).
About the task
Created a webpage to show the recipe of the Maggie by using asynchronous javascript and implement a callback based program So input is given in the form of how many number of people wants Maggie then as we give the input then when we click on recipe then we'll be getting the recipe according to the ammount of people who's going to eat Maggie
To get code and execution of the task 2: https://github.com/ShrushtiBhalkiker/Marvel-Task-2
---------------Task 3---------------
PROMISES
Implement the above recipe program with promises and list the potential benefits and improvements of using the same
About the task
Created a webpage to show the recipe of the Maggie by using asynchronous javascript And along with this we have used promises also to make the code more smoother As in callback function it provides the return value when that function is ready to give it but in promise it provides the return type when the main function is needed to execution that don't need to wait like callback functions So input is given in the form of how many number of people wants Maggie then as we give the input then when we click on recipe then we'll be getting the recipe according to the ammount of people who's going to eat Maggie
To get code and execution of the task 3: https://github.com/ShrushtiBhalkiker/Marvel-Task-3
---------------Task 4---------------
GET FAMILIAR WITH THE COMMAND LINE AND DO THE FOLLOWING SUBTASKS
Create a folder named test. cd into that folder. Create a blank file without any using any text editor. list the files in that folder create 2600 folders in this folder where each folder is named like . For example, M90 or B56. concatenate two text files containing any random text and display them on the terminal.
About the task
First we are trying to create a directory with name test Then we are creating test directory ,we are changing our directory to test After that we are creating an empty file named file1 under test directory Then create 2600 files At last we are merginging two files underS 3
To get code and execution of the task 4: https://github.com/ShrushtiBhalkiker/Marvel-Task-4
---------------Task 5-------------
VI
Learn the basics of vi and create a markdown file in vi illustrating the various features of vi that you found to be fascinating
About the task
To get code and execution of the task 5: https://github.com/ShrushtiBhalkiker/Marvel-Task-5
-----------------Task 6-----------------
LINIX CONTINUED
Learn the basics of regex and piping in Linux. Using the knowledge gained from the above two topics, learn how grep works. Use grep to extract login times within a date/time range from the login logs using the 'last' command. Pipe this information into a text file and put it into a folder named logs. Zip this folder using gzip and tar.
About the task
To get code and execution of the task 6: https://github.com/ShrushtiBhalkiker/Marvel-Task-6