Efficient Filing Systems: Paper and Digital Files

Paper files= Archivos

The wastepaper can will be the final destination for many paper documents, but others need to be saved. Vocabulary: Retrieve= recuperar, comply=cumplir, control=controlar

Equipment For Storing Paper Files: Equipos para almacenar archivos en papel

Hanging file cabinet with two drawers: archivador, Desktop file/folder holder: carpetas de escritorio, Hanging files: archivos colgantes, Folders: carpetas, File/folder tab with label for file name: carpeta con etiqueta para el nombre,

Read More

Satellite Navigation System Architecture Development

Satellite Based Navigation

The development of the system architecture for the hypothetical Satellite Navigation System (SNS) by logically partitioning the required functionality. To keep this problem manageable, we develop a simplified perspective of the first and second levels of the architecture, where we define the constituent segments and subsystems, respectively. In doing so, we show a representative subset of the process steps and artifacts developed, but not all of them. Showing a more complete

Read More

Software Testing and Quality Management

Q1a. Define the term quality and elaborate different views on quality. Ans: There are different perceptions towards the quality of products. A. Customer-based definition of quality: A quality product must meet customer needs, expectations, and satisfaction. B. Manufacturing-based definition of quality: It means the customer is not fully aware of requirements, and requirements are defined by architects designed on feedback survey. C. Product-based definition of quality: Production must add some new

Read More

JavaScript Basics: Variables, Data Types, Operators, Arrays, Objects, and Functions

// BASICS// On page script JavaScript code to be executed here
// Include external JS file
// COMMENTS

/* Multi line

comment */
// One line comment
// VARIABLES

vara; // variable
varb=“init”; // string (text)
varc=“Hi”+“”+“Joe”; // = “Hi Joe”
vard=1+2+“3”; // = “33”
vare=[2,3,5,8]; // array
varf=false; // boolean
vara=1,b=2,c=a+b; // one line


// Output

console.log(a); // write to the browser console
document.
Read More

Essential Unix Commands and Functions

Commands

Function

Directory/Folder

A term refers to a folder used to organize different files and make locating them easier!

Bash

Bourne Again SHell

ls

lists the current working directory.

ls -F

tells ls to classify the output by adding a marker to file and directory names to indicate what they are:

  • / – a trailing / indicates that this is a directory
  • @ – indicates a link
  • * – indicates an executable

-a

-a stands for ‘show all’ (including hidden files); it forces ls to show us file and directory names that

Read More

Python Unit Testing and Data Structures

Another name for unit test in Python?

pyUnit

What is unit testing?

Framework used for testing your code while parallely writing your code and it helps in defining more precisely the intent of the code.

What is the difference between unit test and docstring?

Unit test is a unit testing framework that helps in determining quickly the impact of any modification on the rest of the code. Docstring are used to verify if the docstrings are still relevant to the current version of the code.

Explain what is pdb

Read More