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

PhD thesis

I need a comprehensive PhD thesis developed on the topic of “Emotion-Aware Artificial Intelligence and Sustainable Consumer Behavior: A Neuro-AI Marketing Framework for Continuous Green Consumption.”

Co project

· Comprehensive Literature Review: Require a more comprehensive survey of existing approaches. · Comparative Study: Expect more detailed benchmarking of at least 8 to 10 machine learning models. · Additional Experiments: · Conduct feature selection or dimensionality reduction as an extra step. · Explore ensemble methods or advanced techniques beyond

AI

Did AI take place the Software Engineers, HR consultants and Data Entry Jobs?

Data visualization 4 part 2

Follow the attached instructions to complete this work. Unit 4 Assignment Directions: Time Series In this assignment, you will perform a time series analysis in Tableau. · Choose a dataset to analyze based on the requirements provided.   · Once you’ve selected your time series, build a forecast to predict future

Computer Science CG Assignment 8 presentation

Follow the attach instruction to complete this work. Note: Make sure it aligns with Rubric Unit 8 Assignment 2 Directions: Final Presentation Purpose With this presentation, you will gain valuable experience demonstrating your expertise in cybersecurity governance by presenting as a CISO to a hypothetical professional audience.  Directions Begin by incorporating

Computer Science CG assignment 8

Follow the attached assignment to complete the work. Note: Follow Rubric Unit 8 Assignment 1 Directions: Presentation Rehearsal Purpose The rehearsal is your first run-through of your talk. Use the opportunity to de-bug any technical issues with lighting, positioning, and recording. You will not be graded on technical or artistic

Computer Science CG assignment 7 Outline

 Follow the attached document to complete this work Unit 7 Assignment 1 Directions: Professional Presentation Outline Purpose This assignment allows you time to review your research from previous units and organize your thoughts in an outline format. Plan on changing your paper and presentation based on feedback on this outline.  Directions

Computer Science CG assignment 6 ,

Follow the attached direction to complete this work. Note: Make sure it Aligns with Rubric Unit 6 Assignment 2 Directions: Timothy Brown vs. the SEC Purpose The Securities and Exchanges Commission (SEC) is a key US federal agency that regulates financial reporting. In this paper, you will explore how the

Microsoft 365Tenant to Tenant Migration Solution

A smooth tenant-to-tenant migration requires more than just moving mailboxes—it demands precision, security, and planning. With the MailsDaddy Cross-Tenant Migration Service, IT teams can execute a flawless cross-tenant mailbox migration that covers emails, attachments, calendars, contacts, and OneDrive data. It’s built for businesses of every size, ensuring the entire Office

CO Data 3

DECISION TREES for Risk Assessment One of the great advantages of decision trees is their  interpretability. The rules learnt for classification are easy for a person to follow, unlike the opaque “black box” of many other methods, such as neural networks. We demonstrate the utility of this using a  German

Computer Science Homework 1

MMIS 671 Homework 1. Constrained Optimization Problems A company produces 3 types of cables: A, B, and C. In-house production costs per foot of cables A, B, and C are $6, $8, and $10, respectively. The production process requires 5 resources: Drawing, Annealing, Stranding, Extrusion, and Assembly. For each resource,

MIMT

  Task 2.4 — Executing the Payload After decrypting and executing the transferred file, it generates a unique hash tied to your GTID. What’s the hash?

data Discussion 3

Follow the attached instructions to complete this. use the   CRM Sale Dashboard. Unit 3 Discussion: Deconstruction of an Advanced Dashboard: Trends and Improvements   Discussion Prompts · Does the dashboard designer use any of the trends that are described in Milligan’s Chapter 9? · If they did use those

Assign 4 of CG

Follow the attach instructions to complete this work. Make sure it alligns with rubric. Guidance to follow I encourage you to build your project format following the requirements established in each project’s final step. I am going to give you the key to success. I am a fan of headings/subheadings