SlideShare a Scribd company logo
1 of 4
Nombre: Henry Joshua Malavé Pérez
Código: 599
Curso: 1° A
Materia: Fundamentos de Programación
Tema: Algoritmos cualitativos-cuantitativos
1.Realice un algoritmo que permita calcular el área de un cuadrado
solo con ingresar un lado.
Cuantitativa Prueba de Escritorio
1. Inicio
2. Ingresar lado ->A
3. X ->A*A
4. Calcular X
5. Fin
A X
4 4*5= 20
Error
A X
4 4*4= 16
Correcto
2.Realice un algoritmo que solicite al usuario los datos necesarios
para calcular el área de un rombo.
Cuantitativa Prueba de Escritorio
1. Inicio
2. Solicitar -> D, d
3. Leer D
4. Leer d
5. X=(D*d) /2
6. Fin
D d X
10 8 8*10/4
Error
D d X
10 8 10*8/2
Correcto
3.Realice un algoritmo que transforme en grados Fahrenheit a
Celsius
Cuantitativa Prueba de Escritorio
1. Inicio
2. Leer grados °F
3. Calcular formula °C=(°F-
32)5/9
4. Transformación a °C
5. Fin
°F °C
90° C= (90-32) 5/9= 45.2
Error
°F °C
°90 C= (90-32) 5/9= 32.22
Correcto
Nombre: Henry Joshua Malavé Pérez
Código: 599
Curso: 1° A
Materia: Fundamentos de Programación
4.Realice un algoritmo que descomponga un numero ingresado por
el usuario en su parte entera y decimal
Cuantitativa Prueba de Escritorio
1. Inicio
2. Ingresar A
3. Leer A
4. Descomposición de B
5. Fin
A B
60 60 2
30 2 2*2*3*5= 70
15 3
5 5
1
Error
A B
60 60 2
30 2 2*2*3*5= 60
15 3
5 5
1
Correcto
5.Realice un algoritmo que permita calcular el área y perímetro de
un cuadrado al ser ingresado un lado
Cuantitativa Prueba de Escritorio
1. Inicio
2. Ingresar lado -> Y
3. X -> Y*Y
4. C -> Y*4
5. Calcular X, C
6. Fin
Y X C
9 9*9= 72 9*5= 45
Error
Y X C
9 9*9 = 81 9*4= 36
Correcto
6.Realice un algoritmo que solicite al usuario los datos necesarios
para calcular el área de un rombo A= d*d/2
Nombre: Henry Joshua Malavé Pérez
Código: 599
Curso: 1° A
Materia: Fundamentos de Programación
Cuantitativa Prueba de Escritorio
1. Inicio
2. Solicitar -> d1, d2
3. Leer d1
4. Leer d2
5. X=(d1*d2) /2
6. Fin
D1 D2 X
5 7 5/7
Error
D1 D2 X
5 7 (5*7) /2
Correcto
7.Realice un algoritmo que calcule el volumen de un cilindro recto
considerando que V=π 𝑟2
ℎ
Cuantitativa Prueba de Escritorio
1. Inicio
2. Leer -> r
3. Leer -> h
4. Ingresar en -> V=π 𝑟2
ℎ
5. Leer -> V
6. Fin
r h V
4 3 V=3.14 (3)2
(6) = 99.9
Error
r h V
4 3 V=3.14 (4)2
(3) = 150.72
Correcto
8.Realice un algoritmo que calcule el área y perímetro de una
circunferencia conociendo su diámetro
Cuantitativa Prueba de Escritorio
1. Inicio
2. Ingresar Lado -> r
3. A→π𝑟2
ℎ→π (𝐷2
/4)
4. P→πr→2(π) (D/2)
5. Calcular → A, P
6. Fin
r A P
7 3.14 (49/4) =
15.2
2(3,14) (7/4)
= 2.4
Error
r A P
7 3.14 (49/4) =
38,465
2(3.14) (7/2)
=10.99
Correcto
Nombre: Henry Joshua Malavé Pérez
Código: 599
Curso: 1° A
Materia: Fundamentos de Programación
9.Realice un algoritmo que tomando una cantidad expresada en
metros lineales los transforme a su equivalente en kilómetros,
centímetros y milímetros
Cuantitativa Prueba de Escritorio
1. Inicio
2. Ingresar → M
3. Transformar Km
→ M/1000
4. Transformar Cm
→ M*100
5. Transformar
Mm→ M*1000
6. Fin
M Km Cm Mm
50 50/1000=0,005 50*100= 500 50*10000=
50000000
Error
M Km Cm Mm
50 50/1000=0,05 50*100=5000 50*1000=50000
Correcto

More Related Content

What's hot (19)

C programming Lab 1
C programming Lab 1C programming Lab 1
C programming Lab 1
 
Programming fundamentals
Programming fundamentalsProgramming fundamentals
Programming fundamentals
 
Infix prefix postfix
Infix prefix postfixInfix prefix postfix
Infix prefix postfix
 
c++ exp 1 Suraj...pdf
c++ exp 1 Suraj...pdfc++ exp 1 Suraj...pdf
c++ exp 1 Suraj...pdf
 
Cse presentation ratul
Cse presentation ratulCse presentation ratul
Cse presentation ratul
 
Csc1100 lecture03 ch03-pt1-s14
Csc1100 lecture03 ch03-pt1-s14Csc1100 lecture03 ch03-pt1-s14
Csc1100 lecture03 ch03-pt1-s14
 
Csc1100 lecture03 ch03-pt1-s14
Csc1100 lecture03 ch03-pt1-s14Csc1100 lecture03 ch03-pt1-s14
Csc1100 lecture03 ch03-pt1-s14
 
Expression evaluation
Expression evaluationExpression evaluation
Expression evaluation
 
Computer Architecture and Organization lab with matlab
Computer Architecture and Organization lab with matlabComputer Architecture and Organization lab with matlab
Computer Architecture and Organization lab with matlab
 
C++
C++C++
C++
 
Circular queues
Circular queuesCircular queues
Circular queues
 
Lab manualsahu[et&t]
Lab manualsahu[et&t]Lab manualsahu[et&t]
Lab manualsahu[et&t]
 
Examplelf flowchart
Examplelf flowchartExamplelf flowchart
Examplelf flowchart
 
Testing lecture after lec 4
Testing lecture after lec 4Testing lecture after lec 4
Testing lecture after lec 4
 
My lecture infix-to-postfix
My lecture infix-to-postfixMy lecture infix-to-postfix
My lecture infix-to-postfix
 
Exp 3
Exp 3Exp 3
Exp 3
 
Arrays and its properties IN SWIFT
Arrays and its properties IN SWIFTArrays and its properties IN SWIFT
Arrays and its properties IN SWIFT
 
week-3x
week-3xweek-3x
week-3x
 
2.2 stack applications Infix to Postfix & Evaluation of Post Fix
2.2 stack applications Infix to Postfix & Evaluation of Post Fix2.2 stack applications Infix to Postfix & Evaluation of Post Fix
2.2 stack applications Infix to Postfix & Evaluation of Post Fix
 

Similar to Programacion

Fatima Aliasgher Portfolio
Fatima Aliasgher PortfolioFatima Aliasgher Portfolio
Fatima Aliasgher PortfolioRaheelMuhammad7
 
How c program execute in c program
How c program execute in c program How c program execute in c program
How c program execute in c program Rumman Ansari
 
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docxSpring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docxrafbolet0
 
Csphtp1 06
Csphtp1 06Csphtp1 06
Csphtp1 06HUST
 
SPL 6.1 | Advanced problems on Operators and Math.h function in C
SPL 6.1 | Advanced problems on Operators and Math.h function in CSPL 6.1 | Advanced problems on Operators and Math.h function in C
SPL 6.1 | Advanced problems on Operators and Math.h function in CMohammad Imam Hossain
 
Csci101 lect01 first_program
Csci101 lect01 first_programCsci101 lect01 first_program
Csci101 lect01 first_programElsayed Hemayed
 
Whats new in ES2019
Whats new in ES2019Whats new in ES2019
Whats new in ES2019chayanikaa
 
Modules and Scripts- Python Assignment Help
Modules and Scripts- Python Assignment HelpModules and Scripts- Python Assignment Help
Modules and Scripts- Python Assignment HelpAnderson Silva
 
Important C program of Balagurusamy Book
Important C program of Balagurusamy BookImportant C program of Balagurusamy Book
Important C program of Balagurusamy BookAbir Hossain
 
Isc computer project final upload last
Isc computer project final upload lastIsc computer project final upload last
Isc computer project final upload lastArunav Ray
 
Cmis 102 Effective Communication / snaptutorial.com
Cmis 102  Effective Communication / snaptutorial.comCmis 102  Effective Communication / snaptutorial.com
Cmis 102 Effective Communication / snaptutorial.comHarrisGeorg12
 
#include iostream#includectimeusing namespace std;void.docx
#include iostream#includectimeusing namespace std;void.docx#include iostream#includectimeusing namespace std;void.docx
#include iostream#includectimeusing namespace std;void.docxmayank272369
 
Cmis 102 Enthusiastic Study / snaptutorial.com
Cmis 102 Enthusiastic Study / snaptutorial.comCmis 102 Enthusiastic Study / snaptutorial.com
Cmis 102 Enthusiastic Study / snaptutorial.comStephenson22
 

Similar to Programacion (20)

C lab-programs
C lab-programsC lab-programs
C lab-programs
 
Fatima Aliasgher Portfolio
Fatima Aliasgher PortfolioFatima Aliasgher Portfolio
Fatima Aliasgher Portfolio
 
C-LOOP-Session-2.pptx
C-LOOP-Session-2.pptxC-LOOP-Session-2.pptx
C-LOOP-Session-2.pptx
 
How c program execute in c program
How c program execute in c program How c program execute in c program
How c program execute in c program
 
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docxSpring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docx
 
Python Manuel-R2021.pdf
Python Manuel-R2021.pdfPython Manuel-R2021.pdf
Python Manuel-R2021.pdf
 
Csphtp1 06
Csphtp1 06Csphtp1 06
Csphtp1 06
 
SPL 6.1 | Advanced problems on Operators and Math.h function in C
SPL 6.1 | Advanced problems on Operators and Math.h function in CSPL 6.1 | Advanced problems on Operators and Math.h function in C
SPL 6.1 | Advanced problems on Operators and Math.h function in C
 
Csci101 lect01 first_program
Csci101 lect01 first_programCsci101 lect01 first_program
Csci101 lect01 first_program
 
Whats new in ES2019
Whats new in ES2019Whats new in ES2019
Whats new in ES2019
 
Modules and Scripts- Python Assignment Help
Modules and Scripts- Python Assignment HelpModules and Scripts- Python Assignment Help
Modules and Scripts- Python Assignment Help
 
c programing
c programingc programing
c programing
 
C++ in 10 Hours.pdf.pdf
C++ in 10 Hours.pdf.pdfC++ in 10 Hours.pdf.pdf
C++ in 10 Hours.pdf.pdf
 
Important C program of Balagurusamy Book
Important C program of Balagurusamy BookImportant C program of Balagurusamy Book
Important C program of Balagurusamy Book
 
Final DAA_prints.pdf
Final DAA_prints.pdfFinal DAA_prints.pdf
Final DAA_prints.pdf
 
7720
77207720
7720
 
Isc computer project final upload last
Isc computer project final upload lastIsc computer project final upload last
Isc computer project final upload last
 
Cmis 102 Effective Communication / snaptutorial.com
Cmis 102  Effective Communication / snaptutorial.comCmis 102  Effective Communication / snaptutorial.com
Cmis 102 Effective Communication / snaptutorial.com
 
#include iostream#includectimeusing namespace std;void.docx
#include iostream#includectimeusing namespace std;void.docx#include iostream#includectimeusing namespace std;void.docx
#include iostream#includectimeusing namespace std;void.docx
 
Cmis 102 Enthusiastic Study / snaptutorial.com
Cmis 102 Enthusiastic Study / snaptutorial.comCmis 102 Enthusiastic Study / snaptutorial.com
Cmis 102 Enthusiastic Study / snaptutorial.com
 

Recently uploaded

Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 

Recently uploaded (20)

Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 

Programacion

  • 1. Nombre: Henry Joshua Malavé Pérez Código: 599 Curso: 1° A Materia: Fundamentos de Programación Tema: Algoritmos cualitativos-cuantitativos 1.Realice un algoritmo que permita calcular el área de un cuadrado solo con ingresar un lado. Cuantitativa Prueba de Escritorio 1. Inicio 2. Ingresar lado ->A 3. X ->A*A 4. Calcular X 5. Fin A X 4 4*5= 20 Error A X 4 4*4= 16 Correcto 2.Realice un algoritmo que solicite al usuario los datos necesarios para calcular el área de un rombo. Cuantitativa Prueba de Escritorio 1. Inicio 2. Solicitar -> D, d 3. Leer D 4. Leer d 5. X=(D*d) /2 6. Fin D d X 10 8 8*10/4 Error D d X 10 8 10*8/2 Correcto 3.Realice un algoritmo que transforme en grados Fahrenheit a Celsius Cuantitativa Prueba de Escritorio 1. Inicio 2. Leer grados °F 3. Calcular formula °C=(°F- 32)5/9 4. Transformación a °C 5. Fin °F °C 90° C= (90-32) 5/9= 45.2 Error °F °C °90 C= (90-32) 5/9= 32.22 Correcto
  • 2. Nombre: Henry Joshua Malavé Pérez Código: 599 Curso: 1° A Materia: Fundamentos de Programación 4.Realice un algoritmo que descomponga un numero ingresado por el usuario en su parte entera y decimal Cuantitativa Prueba de Escritorio 1. Inicio 2. Ingresar A 3. Leer A 4. Descomposición de B 5. Fin A B 60 60 2 30 2 2*2*3*5= 70 15 3 5 5 1 Error A B 60 60 2 30 2 2*2*3*5= 60 15 3 5 5 1 Correcto 5.Realice un algoritmo que permita calcular el área y perímetro de un cuadrado al ser ingresado un lado Cuantitativa Prueba de Escritorio 1. Inicio 2. Ingresar lado -> Y 3. X -> Y*Y 4. C -> Y*4 5. Calcular X, C 6. Fin Y X C 9 9*9= 72 9*5= 45 Error Y X C 9 9*9 = 81 9*4= 36 Correcto 6.Realice un algoritmo que solicite al usuario los datos necesarios para calcular el área de un rombo A= d*d/2
  • 3. Nombre: Henry Joshua Malavé Pérez Código: 599 Curso: 1° A Materia: Fundamentos de Programación Cuantitativa Prueba de Escritorio 1. Inicio 2. Solicitar -> d1, d2 3. Leer d1 4. Leer d2 5. X=(d1*d2) /2 6. Fin D1 D2 X 5 7 5/7 Error D1 D2 X 5 7 (5*7) /2 Correcto 7.Realice un algoritmo que calcule el volumen de un cilindro recto considerando que V=π 𝑟2 ℎ Cuantitativa Prueba de Escritorio 1. Inicio 2. Leer -> r 3. Leer -> h 4. Ingresar en -> V=π 𝑟2 ℎ 5. Leer -> V 6. Fin r h V 4 3 V=3.14 (3)2 (6) = 99.9 Error r h V 4 3 V=3.14 (4)2 (3) = 150.72 Correcto 8.Realice un algoritmo que calcule el área y perímetro de una circunferencia conociendo su diámetro Cuantitativa Prueba de Escritorio 1. Inicio 2. Ingresar Lado -> r 3. A→π𝑟2 ℎ→π (𝐷2 /4) 4. P→πr→2(π) (D/2) 5. Calcular → A, P 6. Fin r A P 7 3.14 (49/4) = 15.2 2(3,14) (7/4) = 2.4 Error r A P 7 3.14 (49/4) = 38,465 2(3.14) (7/2) =10.99 Correcto
  • 4. Nombre: Henry Joshua Malavé Pérez Código: 599 Curso: 1° A Materia: Fundamentos de Programación 9.Realice un algoritmo que tomando una cantidad expresada en metros lineales los transforme a su equivalente en kilómetros, centímetros y milímetros Cuantitativa Prueba de Escritorio 1. Inicio 2. Ingresar → M 3. Transformar Km → M/1000 4. Transformar Cm → M*100 5. Transformar Mm→ M*1000 6. Fin M Km Cm Mm 50 50/1000=0,005 50*100= 500 50*10000= 50000000 Error M Km Cm Mm 50 50/1000=0,05 50*100=5000 50*1000=50000 Correcto