Our Services

Get 15% Discount on your First Order

[rank_math_breadcrumb]

docs1

1) Sort(arrau moditifed in place)

program myprog(input, output);

type

  dataset = array[1..3] of integer; 

var

  mydata: dataset;

  i: integer;

procedure sortArray(var srcdata: dataset); 

var

  i, j: integer;

  temp: integer;

begin

  for i := 1 to 2 do  

    for j := 1 to 3 – i do

      if srcdata[j] > srcdata[j + 1] then

      begin

        temp := srcdata[j];

        srcdata[j] := srcdata[j + 1];

        srcdata[j + 1] := temp;

      end;

end;

begin

  mydata[1] := 49;

  mydata[2] := 8;

  mydata[3] := 45;

  sortArray(mydata);

  writeln(‘Sorted Array:’);

  for i := 1 to 3 do

    write(mydata[i], ‘ ‘);

  writeln;

end.

Output:

Target OS: Linux for x86-64

Compiling main.pas

Linking a.out

41 lines compiled, 0.0 sec

Sorted Array:

8 45 49 

…Program finished with exit code 0

Press ENTER to exit console.

2) FindLargestEven (array -> real

program myprog(input, output);

type

  dataset = array[1..4] of real; 

var

  mydata: dataset;

  largestEven: real;

function FindLargestEven(srcdata: dataset): real; 

var

  index: integer;

  largestEven: real;

begin

  largestEven := -1; 

  for index := 1 to 4 do begin

    if (trunc(srcdata[index]) mod 2 = 0) then begin 

      if (srcdata[index] > largestEven) then

        largestEven := srcdata[index]; 

    end;

  end;

  FindLargestEven := largestEven; 

end;

begin

  mydata[1] := 2.5;

  mydata[2] := 7.0;

  mydata[3] := 6.0;

  mydata[4] := 5.8;

  largestEven := FindLargestEven(mydata);

  if largestEven = -1 then

    writeln(‘No even number.’)

  else

    writeln(‘largest even number: ‘, largestEven, ‘ ‘); 

end.

Output: 

Copyright (c) 1993-2021 by Florian Klaempfl and others

Target OS: Linux for x86-64

Compiling main.pas

Linking a.out

44 lines compiled, 0.0 sec

largest even number:  6.0000000000000000E+000 

…Program finished with exit code 0

Press ENTER to exit console.

3) Distance (array -> real)

program myprog(input, output);

type

  dataset = array[1..2] of real;

var

  mydata: dataset;

  mydistance: real;

function Distanceformula(srcdata: dataset): real;

var

  distance: real;

begin

  distance := sqrt(sqr(srcdata[1]) + sqr(srcdata[2]));

  Distanceformula := distance;

end;

begin

  mydata[1] := 400.0;

  mydata[2] := 750.0;

  mydistance := Distanceformula(mydata);

  writeln(‘distance from start (0.0,0.0) to (‘, mydata[1], ‘,’, mydata[2], ‘) is: ‘, mydistance, ‘ ‘);

end.

 

      

  Output:

Free Pascal Compiler version 3.2.2+dfsg-9ubuntu1 [2022/04/11] for x86_64

Copyright (c) 1993-2021 by Florian Klaempfl and others

Target OS: Linux for x86-64

Compiling main.pas

Linking a.out

29 lines compiled, 0.0 sec

distance from start (0.0,0.0) to ( 4.0000000000000000E+002, 7.5000000000000000E+002) is:  8.5000000000000000E+002 

…Program finished with exit code 0

Press ENTER to exit console.

4) Multiply (array num, var array)

program myprog(input, output);

type

  dataset = array[1..4] of integer;

var

  mydata: dataset;

  i: integer;

procedure Multiply(srcdata: array of integer; var ans: array of integer);

var

  i: integer;

begin

  for i := 1 to 4 do

    ans[i] := srcdata[i] * 70;

end;

begin

  mydata[1] := 2;

  mydata[2] := 78;

  mydata[3] := 22;

  mydata[4] := 45;

  Multiply(mydata, mydata);

  for i := 1 to 4 do

    writeln(‘mydata[‘, i, ‘] = ‘, mydata[i], ‘ ‘);

end.

Output:

Free Pascal Compiler version 3.2.2+dfsg-9ubuntu1 [2022/04/11] for x86_64

Copyright (c) 1993-2021 by Florian Klaempfl and others

Target OS: Linux for x86-64

Compiling main.pas

Linking a.out

33 lines compiled, 0.0 sec

mydata[1] = 2 

mydata[2] = 5460 

mydata[3] = 1540 

mydata[4] = 3150 

…Program finished with exit code 0

Press ENTER to exit console.

5) AddElements (array array, var array)

program myprog(input, output);

type

  dataset = array[1..3] of integer;

var

  array1, array2, resultArray: dataset;

  i: integer;

procedure AddElements(srcdata1, srcdata2: dataset; var result: dataset);

var

  i: integer;

begin

  for i := 1 to 3 do

    result[i] := srcdata1[i] + srcdata2[i];

end;

begin

  array1[1] := 50;

  array1[2] := 26;

  array1[3] := 24;

  array2[1] := 1022;

  array2[2] := 472;

  array2[3] := 334;

  AddElements(array1, array2, resultArray);

  for i := 1 to 3 do

    writeln(‘resultArray[‘, i, ‘] = ‘, resultArray[i]);

End.

Output:

Free Pascal Compiler version 3.2.2+dfsg-9ubuntu1 [2022/04/11] for x86_64

Copyright (c) 1993-2021 by Florian Klaempfl and others

Target OS: Linux for x86-64

Compiling main.pas

Linking a.out

37 lines compiled, 0.0 sec

resultArray[1] = 1072

resultArray[2] = 498

resultArray[3] = 358

Share This Post

Email
WhatsApp
Facebook
Twitter
LinkedIn
Pinterest
Reddit

Order a Similar Paper and get 15% Discount on your First Order

Related Questions

HIMS 655 ASS7

Mapping between SNOMED-CT and ICD-10-CM Note: For completing this assignment, use of the I-MAGIC tool (Interactive Map-Assisted Generation of ICD Codes) is required. To access the I-MAGIC tool, click on the following  ) Problems and diagnoses can be recorded in SNOMED CT in the EHR, while the cross-mappings to ICD-10-CM can

HIMS 645 ASS7

Four types of databases are Relational, Network, Hierarchical, and Object-Oriented. What are their salient features (a table format is acceptable)? Assess their usability for healthcare facilities that generated numerical, text, and images data citing reasons for your choice.  Two most commonly used databases in healthcare organizations are Relational and Object-Oriented (O-O). Both employ respective

MS ACCESS

Need to do a Microsoft Access document for my work.  2 Consideration of MS Access Database Development on Healthcare. Name Instructor School Date Consideration of MS Access Database Development on Healthcare. Introduction The task entailed developing a Microsoft access database of a small healthcare facility, which has just abandoned the

Effective security programs

Organizational policies define the direction for an organization and contribute to its overall security culture by setting the tone on what is and is not acceptable. 

The Equifax Data Breach

Briefly explain what the Equifax data breach was, why it happened, and why it was important. You should mention that Equifax failed to protect personal data, discuss the ethical and security issues involved, and explain what companies can learn from the incident. Please see attached documents. 

Reflection on Big Data and AI

please see attached DAT 260 Module Five Journal Guidelines and Rubric Overview In this journal assignment, you will reflect on key concepts covered in this module. This assignment directly supports your work in Project Two, which is due in Module Seven. Directions In a well-crafted journal entry, address the following:

Disaster Recovery

  Questions: Research the network and server outage problems experienced during a previous man-made or natural disaster and answer the following questions: What parts of the infrastructure was impacted? How were the networks recovered? How redundancy could have mitigated the impact of the disaster?

Network Design and Plan Purpose

Please review attachment Mod 4 Project: Network Design and Plan Purpose In this module, we will introduce a course design project that will be completed in four parts during the course. This project provides you an opportunity to solve a comprehensive problem in firewall and virtual private network (VPN) implementation

Memecoins & Stablecoins Development

Please take a look at the attachment. Lab #3: Blockchain-Based Ecosystems: Memecoins & Stablecoins Development, Attack Simulation, and Auditing Lastname: ______________ First name:____________Date_______ TA_Prove_ Yes/No 1. Overview This lab guides students through designing, implementing, deploying, testing, and auditing a simple memecoin (ERC‑20) and a minimal ecosystem around it (liquidity pool,

Blockchain Presentation

presentation about a blockchain Term Project CIS 5730- Blockchain Application Project Guideline Part ii–Presentation Along with the project you will present what you did to the class in a short presentation. If you want, you can demonstrate the project, or just present an overview of what you did. Presentations should

Network Threats

  Questions: Below is a list of common network attacks: Distributed Denial of Service (DDoS) DNS poisoning ARP poisoning Domain hijacking MAC flooding MAC cloning Man-in-the-Middle Explain two of these network attacks and discuss methods/techniques for protecting the network against them.

Best Practices for Role-Based Privilege Management in Databases

  Research the best practices for managing and securing role-based privileges in databases and address the following questions in your discussion post:  What are the key challenges in managing role-based privileges, and how do they impact database security? Can you provide a real-world scenario where poor role-based privilege management led

Computer Science Cloud Computing assignment

Please see attachment for details 4 [ Note: To complete this template, replace the bracketed text with your own content. Remove this note before you submit your paper.] Cloud Computing Evaluation Paper 1 Cloud Computing [Differentiate between cloud computing models and their uses. What are the different types of deployment