Notes, abstracts, papers, exams and problems of Computers

Sort by
Subject
Level

Which of the following statements is true?,

Classified in Computers

Written at on English with a size of 10.36 KB.

infile.Read(1)
'T'
>>>
infile.Read(5)
'he 3 '
>>>
infile.Readline()
'lines in this file end with the new line
character.\n'
>>>
infile.Read()
'\nThere is a blank line above this line.\n'
>>>
infile.Close()

outfile = open('test.Txt', 'w')
>>>
outfile.Write('T')
1
>>>
outfile.Write('his is the first line.')
22
>>>
outfile.Write(' Still the first line...\n')
25
>>>
outfile.Write('Now we are in the second line.\n')
31
>>>
outfile.Write('Non string value like '+str(5)+' must be converted first.\n')
49
>>>
outfile.Write('Non string value like {} must be converted first.\n'.Format(5))
49
>>> outfile.Close()

if temp > 86:
print('It is hot!')
print('Be sure to drink liquids.')
else:
print(... Continue reading "Which of the following statements is true?," »

Database Security, AutoML, and Data Lake Table Joining

Classified in Computers

Written at on English with a size of 3.65 KB.

Acid Rain: Concurrency-Related Attacks in Database-Backed Web Applications

Motivation:

  • 12 popular self-hosted e-commerce applications (deployed over 2M websites, representing over 50% of all e-commerce websites)
  • 22 critical ACIDRain attacks identified and verified
  • Flexcoin -> Bankrupted

Problem Definition:

An application is vulnerable if:

  • Anomalies Possible: Under concurrent API access, the application may exhibit behaviors (i.e., anomalies) that could not have arisen under serial execution.
  • Sensitive Invariants: The anomalies arising from concurrent access lead to violations of application invariants.

Solution:

  • Execute API calls against a live application and database to generate a (possibly sequential) trace of database activity.
  • Analyze the trace
... Continue reading "Database Security, AutoML, and Data Lake Table Joining" »

Understanding Computer Fundamentals: Output Devices, Formatting, and Software Features

Classified in Computers

Written at on English with a size of 2.49 KB.

Understanding Computer Fundamentals

Output Devices

Plotter

A plotter is a specialized output device that generates images on paper, similar to a printer but with a distinct approach. Plotters excel at producing large-scale drawings or images, such as construction plans or blueprints. They can be connected to the same port typically used by a printer.

Tab Stops

Tab stops simplify document formatting. By default, they are set at 0.5-inch intervals from the left margin, allowing for easy creation of elements like tables of contents or indexes without manual adjustments.

Formatting and Data Visualization

Importance of Pie Charts

Pie charts effectively illustrate relative proportions or contributions to a whole using a single data series. Their effectiveness... Continue reading "Understanding Computer Fundamentals: Output Devices, Formatting, and Software Features" »

Machine Learning Algorithms and Use Cases

Classified in Computers

Written at on English with a size of 33.21 KB.

AlgorithmTrain or TestUse CasesSupervisedPipe?File TypeCPU or GPU
AutoGluon-Tabulartraining and (optionally) validationAutoGluon-Tabular succeeds by ensembling multiple models and stacking them in multiple layers.YNCSVCPU or GPU (single instance only) M5
BlazingTexttrainText Classification can be used to solve various use-cases like sentiment analysis, spam detection, hashtag predictionYYText file (one sentence per line with space-separated tokens)CPU or GPU (single instance only) M5
CatBoosttraining and (optionally) validationGradientBoosting Regression Neural Network, Gradient Boosting is best useful when the number of dimensions in the data is less , when a simple linear model performs very badly,YNCSVCPU (single instance only)
DeepAR Forecastingtrain
... Continue reading "Machine Learning Algorithms and Use Cases" »

SkinnerDB: Reinforcement Learning for Query Optimization

Classified in Computers

Written at on English with a size of 3.78 KB.

SkinnerDB: Regret-Bounded Query Evaluation via Reinforcement Learning

INTRODUCTION AND PROBLEM DEFINITION:

The work is on query optimization, more specifically: SkinnerDB focuses on finding the optimal Join Order. Because it has the most impact in practice.

SkinnerDB aims to get expected near optimal results without needing any a-priori information. It does not make strong assumptions either.

CONTRIBUTIONS:

  • Introduced a new quality criterion for query evaluation strategies that compares expected and optimal execution cost.
  • Proposed several adaptive execution strategies based on reinforcement learning.
  • Formally proved correctness and regret bounds for those execution strategies.
  • Experimental comparisations of those strategies, implemented in SkinnerDB,
... Continue reading "SkinnerDB: Reinforcement Learning for Query Optimization" »

Understanding the Entity-Relationship Model for Database Design

Classified in Computers

Written at on English with a size of 4.78 KB.

The ER model defines the conceptual view of a database. It works around real-world entities and the associations among them. At view level, the ER model is considered a good option for designing databases.

Entity

An entity can be a real-world object, either animate or inanimate, that can be easily identifiable. For example, in a school database, students, teachers, classes, and courses offered can be considered as entities. All these entities have some attributes or properties that give them their identity.

An entity set is a collection of similar types of entities. An entity set may contain entities with attribute sharing similar values. For example, a Students set may contain all the students of a school; likewise a Teachers set may contain... Continue reading "Understanding the Entity-Relationship Model for Database Design" »

C Programming Basics: Examples and Explanations

Classified in Computers

Written at on English with a size of 2.72 KB.

C Programming Basics

Printing a Message

int main() { print("Hello!!!"); }

Variables and Mathematical Calculations

int main() // Main function

{

int a = 25; // Initialize a variable to 25

int b = 17; // Initialize b variable to 17

int c = a + b; // Initialize c variable to a + b

print("c = %d ", c); // Display decimal value of c

}

Floating-Point Math

int main() // Main function

{

float r = 1.0; // Set radius to 1.0

float c = 2.0 * PI * r; // Calculate circumference

print("circumference = %f \n", c); // Display circumference

}

Arrays

int main() // Main function

{

int p[] = {1, 2, 3, 5, 7, 11}; // Initialize the array

print("p[0] = %d\n", p[0]); // Display what p[0] stores

print("p[3] = %d\n", p[3]); // Display what p[3] stores

p[3] = 101; // Assignment

}

... Continue reading "C Programming Basics: Examples and Explanations" »

Understanding Key Computer Science Concepts

Posted by Lijia and classified in Computers

Written at on English with a size of 3.47 KB.

Fetch-Execute Cycle

  1. The address in the program counter is transferred within the CPU to the Memory Address Register (MAR).
  2. During the next clock cycle, two things happen simultaneously:
    • The instruction held in the address pointed to by the MAR is fetched into the Memory Data Register (MDR).
    • The address stored in the program counter is incremented.
  3. The instruction stored in the MDR is transferred within the CPU to the Current Instruction Register (CIR).

Sound Sampling

  1. The amplitude of the sound wave is determined to get an approximation of the sound wave.
  2. This is encoded as a sequence of binary numbers and converted to a digital signal.
  3. Increasing the sampling rate will improve the accuracy of the recording.

Run-Length Encoding (RLE)

  1. RLE is a lossless
... Continue reading "Understanding Key Computer Science Concepts" »

Understanding Computer Architecture: Key Components and Functions

Classified in Computers

Written at on English with a size of 2.95 KB.

List and Briefly Define the Four Main Elements of a Computer

A computer is composed of four fundamental elements:

  • Main memory: Stores both data and instructions.
  • Arithmetic and Logic Unit (ALU): Capable of operating on binary data.
  • Control Unit: Interprets the instructions in memory and ensures their execution.
  • Input and Output (I/O) Equipment: Operated by the control unit to facilitate interaction with the external world.

Define the Two Main Categories of Processor Registers

Processor registers can be broadly classified into two categories:

  • User-Visible Registers: These registers are accessible to programmers using machine or assembly language. They help minimize references to main memory by optimizing register usage. High-level language compilers

... Continue reading "Understanding Computer Architecture: Key Components and Functions" »

Java Programming Concepts: A Comprehensive Guide

Classified in Computers

Written at on English with a size of 4.47 KB.

  • A class is a template used to create objects and declare data types and methods in a program.
  • Public - Modifier used to declare classes and interfaces. Void - Method that returns no value. Main - Marks the start and end of program execution.
  • Scanner class - Used to get user input for types like String and Int.
  • Exceptions: Try-catch block, throw statement.
  • Inheritance provides a powerful and natural mechanism for organizing and structuring software programs. It improves clarity in the design of classes.
  • A subclass provides specialized behavior based on elements provided by the superclass. Using inheritance, programmers can reuse the code in the superclass many times.
  • Reading and Writing to Files:
    1. Import java.io file.
    2. File inputFile = new File("input.
... Continue reading "Java Programming Concepts: A Comprehensive Guide" »