click below
click below
Normal Size Small Size show me how
Mobile App
Mobile App Developme
| Question | Answer |
|---|---|
| Why does the Houston market require a different engineering standard compared to typical consumer app markets? | Houston's core industries involve high-stakes operational realities, such as extreme temperatures, remote locations without cellular signals, and the transport of hazardous cargo. |
| In the context of Houston's industries, the assumption that users have _____ is routinely broken. | reliable connectivity |
| Which four environmental and operational assumptions are routinely broken by Houston's industrial sectors? | The assumptions that users have reliable connectivity, the environment is stable, failure has low consequences, and the app is optional for the user. |
| What is the primary technical requirement for mobile apps used in remote West Texas well sites? | Offline-first architecture that allows core operations like safety inspections to function without any cellular coverage. |
| For Houston's energy sector, why is 'moment of action' GPS capture critical? | It ensures that inspection completions are verified by location even when the device is offline, preventing data tampering or inaccuracy. |
| Name three enterprise systems that mobile apps in Houston's energy sector frequently need to integrate with. | SAP ERP, OSIsoft PI, and IBM Maximo. |
| What specific healthcare data integration standard is required for connectivity with systems like Epic and Cerner? | FHIR R4 (Fast Healthcare Interoperability Resources). |
| In the Texas Medical Center context, why is offline functionality required even in urban hospital settings? | Basement-level clinical environments often lack reliable cellular and Wi-Fi signals. |
| Logistics apps in Houston must build FMCSA Hours of Service (HOS) rules directly into the _____ rather than just displaying them. | application logic |
| What type of transaction architecture is required for fintech apps to prevent duplicate trades on unreliable connections? | Idempotent transaction architecture. |
| Which security standards are essential for aerospace contractor apps supporting the NASA Johnson Space Center corridor? | ISO 27001 and NIST 800-171. |
| What is the definition of 'scalability' for a Houston oilfield services company? | The ability of the offline sync architecture to handle concurrent queue writes as the fleet grows from a few dozen to hundreds of technicians. |
| To ensure user scale, what is the recommended peak concurrency multiplier for API load testing before production? | API endpoints should be load-tested at three times the projected peak concurrency. |
| In terms of geographic scale, how should state-specific regulatory variations be handled in the app's architecture? | Regulatory variations should be added as configuration settings rather than necessitating changes to the core codebase. |
| List three features that are often required by Fortune 500 procurement teams for feature scalability. | SAML 2.0 single sign-on, SCIM 2.0 deprovisioning, and multi-tenancy with row-level data isolation. |
| Why are PostGIS indexes necessary for the 'data scale' needs of Houston's logistics companies? | They allow the application to efficiently run complex geospatial queries across enormous operational datasets without collapsing under load. |
| What are the typical characteristics of 'Local Studios and Freelancers' in the Houston market? | They are small teams of 2 to 10 people who excel at consumer-facing apps but lack domain expertise in regulated fields like energy or healthcare. |
| Which vendor category is the 'right fit' for extensions of existing IT systems where the client provides internal architecture leadership? | Large IT Services Companies. |
| How do Product Engineering Companies differ from Large IT Services firms in their approach to specifications? | Product Engineering Companies challenge the specifications based on domain knowledge and iterate quickly on evolving requirements rather than just executing a predefined plan. |
| Why is 'op-sqlite' preferred over default SQLite for Houston oilfield deployments? | It runs 10 to 100 times faster, which is critical for write-intensive field operations on mobile devices. |
| What HIPAA technical safeguard section covers the requirement for unique user identification? | §164.312(a)(1). |
| According to HIPAA §164.312(a)(2)(iii), what is the standard requirement for healthcare app sessions? | Automatic logoff with a configurable timeout, typically set to 15 minutes. |
| What role does 'certificate pinning' play in healthcare app security? | It enhances TLS 1.3 security by ensuring the app only communicates with a specific, trusted server certificate. |
| How does the '60/70-hour rule' affect the design of Houston logistics applications? | The rule must be strictly enforced by the app's logic to maintain FMCSA compliance for commercial truck drivers. |
| In energy trading apps, Dodd-Frank compliance primarily affects the reporting of _____. | over-the-counter (OTC) derivatives |
| What is the key difference between ISO 27001 certification for a vendor and for the product they build? | Vendor certification covers their internal management systems, but the app itself must be built with specific controls (like A.14.2.1) to support the client's own certification. |
| In React Native's New Architecture, what replaces the 'Bridge' to allow direct C++ communication? | JSI (JavaScript Interface). |
| How does the 'Fabric' renderer improve enterprise apps containing complex inspection forms? | It enables synchronous native UI interactions, which eliminates the rendering 'jank' often seen in data-intensive forms. |
| What is the advantage of using 'TurboModules' in apps deployed to devices with limited RAM? | They reduce memory overhead by loading native modules on demand rather than all at once during startup. |
| When deciding between on-device and server-side AI, which factor necessitates on-device inference? | The need for the feature to function offline or the requirement for a response time below 50 milliseconds. |
| Why should sprint reviews for Houston deployments be conducted on target devices rather than simulators? | Simulators cannot replicate real-world constraints like sunlight readability, thermal throttling, or gloved operation. |
| At what ambient temperature do Android devices typically begin thermal throttling, reducing CPU performance by up to 60%? | $45^{\circ}C$ (approximately $113^{\circ}F$). |
| What is the minimum touch target size recommended for mobile apps used by workers wearing gloves? | 48x48dp. |
| To ensure outdoor readability in the Texas sun, what is the minimum recommended screen brightness for a mobile device? | 300 candelas per square meter. |
| Which SAP API is commonly used for real-time work order integration in Houston's energy sector? | SAP OData APIs. |
| What is the purpose of a 'library audit register' in enterprise mobile development? | To track the maintenance status, community health, and OS compatibility of third-party React Native libraries. |
| Which specific metric indicates an early warning sign of poor 'product alignment' at month three of an engagement? | Shipped features requiring more than 20% scope change within two sprints. |
| Why is React Native considered more cost-effective than native development for Houston enterprises with heterogeneous fleets? | It avoids the 1.7x to 2.2x cost increase of building and maintaining separate codebases for iOS and Android. |
| For which specific scenario is native iOS/Android development still recommended over React Native? | Apps requiring deep native hardware integration with proprietary industrial peripherals or high-performance 3D/AR gaming. |
| What is the target latency for LLM-powered natural language work order creation? | Streaming responses should target under 300 milliseconds to the first token. |
| What is a realistic training dataset size for a production-ready computer vision model for industrial inspection? | 10,000 or more labeled images. |
| Why is autonomous AI decision-making (without human review) not recommended for Houston industries in 2026? | Safety and regulatory requirements (OSHA, FDA, CFTC) establish human accountability standards that current AI cannot satisfy. |
| What are the three mandatory components of a production-capable offline-first sync architecture? | A local SQLite database (like op-sqlite), a write-ahead queue, and UUID idempotency keys. |
| What is the minimum historical data requirement for deploying predictive analytics in port logistics? | Six to twelve months of relevant operational data. |
| How many levels of Role-Based Access Control (RBAC) are typically expected by enterprise buyers in the energy sector? | Six levels. |
| The standard for secure mobile log-on procedures including MFA and failed login lockout is found in ISO 27001 control _____. | A.9.4.2 |
| Which OWASP Mobile Top 10 finding is particularly common in healthcare apps due to inadvertent PII/PHI capture? | M6 (Insecure Logging), where crash reporting tools capture sensitive data in stack traces. |
| What happens to a mobile app's access tokens when a SCIM 2.0 deprovisioning event occurs? | Access tokens should be revoked within 24 hours of the employee's termination event in the identity provider. |
| What is the standard 'Time-and-Materials Retainer' engagement model best suited for? | Products with ongoing development needs and evolving requirements that require continuous iteration based on operational feedback. |
| What are the four primary deliverables produced during a 'Paid Discovery Sprint'? | A Product Requirements Document (PRD), an architecture document, design flows/prototypes, and a sprint-by-sprint project plan. |
| Why is a 'Fixed-Scope Project' model generally discouraged for complex industrial domains? | These domains often require iteration to discover the right solution, and fixed-scope models penalize the flexibility needed to adapt to field feedback. |
| What is the 'total cost of ownership' trap associated with low-cost mobile app quotes? | Missing architecture and compliance features initially lead to expensive retrofits and launch delays that far exceed the original quote. |
| Missing architecture and compliance features initially lead to expensive retrofits and launch delays that far exceed the original quote. | |
| How long does a production-ready enterprise field operations app typically take to build? | Five to nine months, depending on integration and compliance complexity. |
| What is the 'idempotency key' used for in write-ahead queues? | It prevents the creation of duplicate records if the app retries a data sync operation after a network interruption. |