12 SQL Developer Interview Questions and Answers
Find and hire talent with confidence. Prepare for your next interview. The right questions can be the difference between a good and great work relationship.
What is a Relational Database Management System (RDBMS), and which one are you most familiar with?
A RDBMS is a system that organizes data into tables called relations, which are further organized into columns (fields) and rows (often called tuples). The relational model allows data to be queried in a nearly unlimited number of ways, making it great for sorting through large volumes of data. It’s important to pick a SQL developer who’s experienced with the particular set of web technologies you plan to use to support your app. Common SQL dialects include PL/SQL for Oracle, T-SQL for MS SQL, and JET SQL for MS Access. Look up any particular dialects used for your chosen RDBMS.
What are the standard SQL commands every SQL developer should know?
The basic SQL commands can be organized into the following categories:
- Data Manipulation Language (DML)
- INSERT: Creates records. The “Create” in CRUD.
- SELECT: Retrieves records. The “Read” in CRUD.
- UPDATE: Modifies records. The “Update” in CRUD.
- DELETE: Deletes records. The “Delete” in CRUD.
- Data Definition Language (DDL)
- CREATE: Creates a new object.
- ALTER: Alters an existing object.
- DROP: Deletes an existing object.
- Data Control Language: (DCL)
- GRANT: Grants privileges to users.
- REVOKE: Revokes privileges previously granted to a user.
In practice however, you should be aware that your typical developer is most likely going to answer this question with CRUD (Create, Read, Update, and Delete), the four essential database operations for database manipulation. Bonus points if they also mention some of the others.
Can you explain how a RDBMS organizes data into tables and fields?
A table is composed of columns (fields) and rows (records or tuples). Each record can be considered as an individual entry that exists within the table and contains multiple fields. For example, a data entry (record) for a customer might consist of the fields: ID, name, address, and purchase.
What is a NULL value and how does it differ from a zero value?
The easiest way to explain this difference is to recognize that zero is a value representing the number zero. NULL is a non-value or a placeholder for data that is not currently known or specified. The result of any operation on a NULL value, as in arithmetic, will be undefined.
What are SQL Constraints?
Constraints are rules you can place on columns or tables to limit the type of data that can be entered into a table. This prevents errors and can improve the accuracy and reliability of the database as a whole. Common constraints include:
- NOT NULL: Prevents a column from having a NULL value.
- DEFAULT: Specifies a default value for a column where none is specified.
- PRIMARY KEY: Uniquely identifies rows/records within a database table.
- FOREIGN KEY: Uniquely identifies rows/records from external database tables.
- UNIQUE: Ensures all values are unique.
- CHECK: Checks values within a column against certain conditions.
- INDEX: Quickly creates and retrieves data from a database.
Name four ways to maintain data integrity within a RDBMS.
When it comes to storing data accurately, consistently, and reliably within a RDBMS, there are four general types of data integrity that you can implement:
- Entity (Row) Integrity: Avoids duplicate rows in tables.
- Domain (Column) Integrity: Restricts the type, format, or range of values to enforce valid entries.
- Referential Integrity: Ensures rows used by other records cannot be deleted.
- User-Defined Integrity: Enforces rules set by the user that do not fall into the other categories.
What is the purpose of database normalization and how does it work?
The primary purpose of normalization is to make databases more efficient by eliminating redundant data and ensuring data dependencies are coherent. Storing data logically and efficiently reduces the amount of space the database takes up and improves performance. The set of guidelines used to achieve normalization are called normal forms, numbered from 1NF to 5NF. A form can be thought of as a best-practice format for laying out data within a database.
Explain the difference between an inner join and outer join using an example.
An inner join is when you combine rows from two tables and create a result set based on the predicate, or joining condition. The inner join only returns rows when it finds a match in both tables. An outer join will also return unmatched rows from one table if it is a single outer join, or both tables if it is a full outer join. A solid example of this will clearly illustrate the difference and demonstrate how well the developer understands joins.
What is wrong with the SQL query below?
SELECT UserId, AVG(Total) AS AvgOrderTotal
FROM Invoices
HAVING COUNT(OrderId) >= 1
The issue here is that there must be a GROUP BY clause here. This query will get the average order amount by customer (UserId) where the customer has at least 1 order. The correct query is listed below:
SELECT UserId, AVG(Total) AS AvgOrderTotal
FROM Invoices
GROUP BY Userid
HAVING COUNT(OrderId) >= 1
Consider the two tables below. Write a query that retrieves all employees recruited by John Do. How would you write a second query to retrieve all employees that were not recruited by any recruiter?
Employee Table
| Id | Name | RecruitedBy |
|---|---|---|
| 1 | Jean Grayson | NULL |
| 2 | Paul Smith | 1 |
| 3 | John Do | NULL |
| 4 | Alex Lee | 3 |
| 5 | Lisa Kim | 3 |
| 6 | Bob Thompson | NULL |
Recruiter Table
| Id | Name |
|---|---|
| 1 | Bob Smith |
| 2 | Paul Allen |
| 3 | John Do |
The following query will retrieve all recruiters recruited by John Do. SELECT Employee.
Name FROM Employee
JOIN Recruiter ON Employee.RecruitedBy = Recruiter.Id
WHERE RecruitedBy = 3
To retrieve all employees who were not recruited by anyone in the recruiter table, you could use the following query:
SELECT Employee.Name FROM Employee
JOIN Recruiter ON Employee.RecruitedBy = Recruiter.Id
WHERE RecruitedBy Is Null
Write a SQL query to find the 10th tallest peak (“Elevation”) from a “Mountain” table. Assume that there are at least 10 records in the Mountain table. Explain your answer.
This can be accomplished using the “TOP” keyword as follows.
SELECT TOP (1) Elevation FROM
(
SELECT DISTINCT TOP (10) Elevation FROM Mountain ORDER BY Elevation DESC
) AS Mt ORDER BY Elevation
The first query takes the top 10 mountains by elevation in the table and lists them in descending order, with the tallest mountain at the top of the list. However, since we want the 10th tallest mountain, the second query, “ AS Mount ORDER BY Elevation”, promptly reorders the list of 10 in ascending order before the top record is selected. Note that not all databases support the “TOP” keyword, so answers may vary. Another possible solution that follows a similar logic for MySQL or PostreSQL is detailed below, this time using the “LIMIT” keyword.
SELECT Elevation FROM
(
SELECT DISTINCT Elevation FROM Mountain ORDER BY Elevation DESC LIMIT 10
) AS Mt ORDER BY Elevation LIMIT 1;
Given two tables created in the code block below, how would you write a query to fetch values in table “fibonacci” that are not in table “prime” without using the “NOT” keyword? Can you name a database technology where this is not possible?
create table fibonacci(id numeric);
create table prime(id numeric);
insert into fibonacci(id) values
(2),
(3),
(5),
(8),
(13),
(21);
insert into prime(id) values
(2),
(3),
(5),
(13);
SQLite, PostgreSQL, and SQL Server all support the ever useful “except” keyword which can be employed as detailed below
select * from fibonacci
except
select * from prime;
A popular database technology that does not support “except” is MySQL, which is why it must use the “not in” keyword. Note that for Oracle, the “minus” keyword must be used instead.
SQL Developer Hiring Resources
Explore talent to hireLearn about cost factorsGet a job description templateSQL Developers you can meet on Upwork
- $15/hr$15 hourly
Navneet M.
- 4.7
- (4 jobs)
Surat, GJSQL
Ecommerce Website DevelopmentEcommerceAPINode.jsReactMVC FrameworkjQueryASP.NET MVCMongoDBMySQLJavaScriptC#Windows Presentation FoundationI am here to apply myself and my experience in developing web applications with all my zeal, freedom & enhanced responsibilities. I have worked for various organization for past 6+ years primarily in web developments and have very good grip on OOPS Concept, Reflection, Binding etc.. I have experience of working with various technologies, programming languages & framework. 1. ASP.Net MVC 2. WPF (Windows Presentation Foundation) 3. HTML 4. Javascript 5. Jquery 6. React.JS 7. Bootstrap 8. CSS 9. Kibo eCommerce 10. Backbone js I attribute my hard working, sincerity & eagerness to learn to the success of my short career till now. I am flexible and open to suggestions every time and in every situation. Hoping to have a great career enhancement here at oDesk. - $9/hr$9 hourly
Precious E.
- 4.8
- (34 jobs)
Lagos, LASQL
Audio RecordingAudio TranscriptionObject Detection & TrackingText ClassificationData AnnotationData AnalysisLabelMeImage AnnotationData EntryData SegmentationData LabelingSentiment AnalysisLLM PromptRLHFComputer VisionLabelboxPythonRoboflowCVATI provide annotation services with precision and data consistency. Delivering labeled datasets at 98%+ accuracy. In building an AI system, the quality of your training data is everything and that is where I come in. I am an AI Data Annotator specialist in image, Video, audio and speech labeling with over 6 years of experience helping machine learning teams and AI companies get their training data right. I have worked across computer vision, speech recognition, generative AI, and multimodal systems, and I understand that bad annotation does not just slow down a project, it breaks the model. What I actually do goes beyond clicking and labeling. I help teams design labeling workflows, write annotation guidelines that make sense, set up QA systems, and coordinate annotation teams on large-scale projects. I have delivered everything from small pilot datasets to massive production-ready annotation operations and I know how to keep quality consistent. My specialty: 🔸 Audio & Speech Transcription & ASR labeling Speaker diarization Sound event tagging Accent and language diversity annotation 🔸 Computer Vision & Image Bounding boxes, polygons, segmentation Keypoints and object tracking Semantic & instance segmentation 🔸 Autonomous Vehicles Lane marking, drivable areas Traffic signs, LiDAR & video annotation 🔸 LLM Alignment RLHF & RLAIF Prompt and response evaluation 🔸 Healthcare AI Medical image labeling High-precision QA workflows 🔸 E-commerce Product categorization, attribute tagging Catalog normalization Tools I have worked with: CVAT Roboflow LabelBox Label Studio VOTT V7 (Darwin) SuperAnnotate Supervisely Annotation Pro Google Sheet Microsoft 365 DataLoop and more If you need someone who understands both the technical and operational side of AI data labeling Let's talk. I am ready to add value from day one. - $30/hr$30 hourly
Aaron A.
- 4.8
- (15 jobs)
Accra, GREATER ACCRASQL
GitData EntryArcGISQGISTopic ResearchDockerFastAPITableauPythonMachine Learning ModelGoogle SheetsMicrosoft Power BIData AnalysisHi there! 👋 My name is Aaron, an experienced Data Scientist/Analyst and a GIS expert with over 4 years of experience. My Services: • Data Analysis (MS Excel, SQL, Python) • Data Visualization (Power BI, Tableau, MS Excel) • Time Series Forecasting (Univariate and Multivariate modeling) • Machine Learning Classification and Prediction • Machine Learning Model Deployment (FastAPI, Streamlit, Gradio) • Web Scrapping/Web Research and Data Management in Google Sheets • Online Data Collection (Kobo Tools, Collector for ArcGIS) • Virtual Assistantship with MS Excel. • Online Mapping, Cartography, and ArcGIS StoryMaps Creation • GIS Analysis with ArcGIS and QGIS • Academic Research Data Analysis (STATA and SPSS) • Data Science/Analytics Tutoring My Average Rating: ⭐⭐⭐⭐⭐ Achievements: ✅Analyzed and predicted customer churn in a forex start-up in Germany. Informed us on where to concentrate our advertisements. lead to over 3000 stable customers within the period of 8 months. ✅Predicted which advertisement channel has the most impact on revenue. This led to a 40% cut in costs and increased revenue by 60%. ✅Collaborated with the GIS department of Ghana Cocoabod to mitigate the spread of the cocoa- swollen Shoot Virus through analytics and visualization. Contributes to effective and efficient monitoring of rehabilitation activities on and off-farm, leading to over 50% improved cocoa bean yield. ✅Discovered insights on the impacts of fertilization in cocoa on its productivity for the period of 2016 through 2020 through data analytics and visualization. Came out with clear map-outs for optimized distribution of fertilizer and other inputs to cocoa farmers which cut down on distribution and application costs by 50%. With expertise in a wide range of tools and statistical packages, I am dedicated to leveraging Data Science and Artificial Intelligence to drive growth and success for my clients. Let's talk about your data needs, be it spatial or attribute data! Thank you!
- $15/hr$15 hourly
Navneet M.
- 4.7
- (4 jobs)
Surat, GJSQL
Ecommerce Website DevelopmentEcommerceAPINode.jsReactMVC FrameworkjQueryASP.NET MVCMongoDBMySQLJavaScriptC#Windows Presentation FoundationI am here to apply myself and my experience in developing web applications with all my zeal, freedom & enhanced responsibilities. I have worked for various organization for past 6+ years primarily in web developments and have very good grip on OOPS Concept, Reflection, Binding etc.. I have experience of working with various technologies, programming languages & framework. 1. ASP.Net MVC 2. WPF (Windows Presentation Foundation) 3. HTML 4. Javascript 5. Jquery 6. React.JS 7. Bootstrap 8. CSS 9. Kibo eCommerce 10. Backbone js I attribute my hard working, sincerity & eagerness to learn to the success of my short career till now. I am flexible and open to suggestions every time and in every situation. Hoping to have a great career enhancement here at oDesk. - $9/hr$9 hourly
Precious E.
- 4.8
- (34 jobs)
Lagos, LASQL
Audio RecordingAudio TranscriptionObject Detection & TrackingText ClassificationData AnnotationData AnalysisLabelMeImage AnnotationData EntryData SegmentationData LabelingSentiment AnalysisLLM PromptRLHFComputer VisionLabelboxPythonRoboflowCVATI provide annotation services with precision and data consistency. Delivering labeled datasets at 98%+ accuracy. In building an AI system, the quality of your training data is everything and that is where I come in. I am an AI Data Annotator specialist in image, Video, audio and speech labeling with over 6 years of experience helping machine learning teams and AI companies get their training data right. I have worked across computer vision, speech recognition, generative AI, and multimodal systems, and I understand that bad annotation does not just slow down a project, it breaks the model. What I actually do goes beyond clicking and labeling. I help teams design labeling workflows, write annotation guidelines that make sense, set up QA systems, and coordinate annotation teams on large-scale projects. I have delivered everything from small pilot datasets to massive production-ready annotation operations and I know how to keep quality consistent. My specialty: 🔸 Audio & Speech Transcription & ASR labeling Speaker diarization Sound event tagging Accent and language diversity annotation 🔸 Computer Vision & Image Bounding boxes, polygons, segmentation Keypoints and object tracking Semantic & instance segmentation 🔸 Autonomous Vehicles Lane marking, drivable areas Traffic signs, LiDAR & video annotation 🔸 LLM Alignment RLHF & RLAIF Prompt and response evaluation 🔸 Healthcare AI Medical image labeling High-precision QA workflows 🔸 E-commerce Product categorization, attribute tagging Catalog normalization Tools I have worked with: CVAT Roboflow LabelBox Label Studio VOTT V7 (Darwin) SuperAnnotate Supervisely Annotation Pro Google Sheet Microsoft 365 DataLoop and more If you need someone who understands both the technical and operational side of AI data labeling Let's talk. I am ready to add value from day one. - $30/hr$30 hourly
Aaron A.
- 4.8
- (15 jobs)
Accra, GREATER ACCRASQL
GitData EntryArcGISQGISTopic ResearchDockerFastAPITableauPythonMachine Learning ModelGoogle SheetsMicrosoft Power BIData AnalysisHi there! 👋 My name is Aaron, an experienced Data Scientist/Analyst and a GIS expert with over 4 years of experience. My Services: • Data Analysis (MS Excel, SQL, Python) • Data Visualization (Power BI, Tableau, MS Excel) • Time Series Forecasting (Univariate and Multivariate modeling) • Machine Learning Classification and Prediction • Machine Learning Model Deployment (FastAPI, Streamlit, Gradio) • Web Scrapping/Web Research and Data Management in Google Sheets • Online Data Collection (Kobo Tools, Collector for ArcGIS) • Virtual Assistantship with MS Excel. • Online Mapping, Cartography, and ArcGIS StoryMaps Creation • GIS Analysis with ArcGIS and QGIS • Academic Research Data Analysis (STATA and SPSS) • Data Science/Analytics Tutoring My Average Rating: ⭐⭐⭐⭐⭐ Achievements: ✅Analyzed and predicted customer churn in a forex start-up in Germany. Informed us on where to concentrate our advertisements. lead to over 3000 stable customers within the period of 8 months. ✅Predicted which advertisement channel has the most impact on revenue. This led to a 40% cut in costs and increased revenue by 60%. ✅Collaborated with the GIS department of Ghana Cocoabod to mitigate the spread of the cocoa- swollen Shoot Virus through analytics and visualization. Contributes to effective and efficient monitoring of rehabilitation activities on and off-farm, leading to over 50% improved cocoa bean yield. ✅Discovered insights on the impacts of fertilization in cocoa on its productivity for the period of 2016 through 2020 through data analytics and visualization. Came out with clear map-outs for optimized distribution of fertilizer and other inputs to cocoa farmers which cut down on distribution and application costs by 50%. With expertise in a wide range of tools and statistical packages, I am dedicated to leveraging Data Science and Artificial Intelligence to drive growth and success for my clients. Let's talk about your data needs, be it spatial or attribute data! Thank you! - $18/hr$18 hourly
Suhil D.
- 5.0
- (2 jobs)
Bengaluru, KASQL
ERP SoftwareData CleaningData MigrationPostgreSQLOdoo DevelopmentScriptingWeb DevelopmentAPI IntegrationWeb ScrapingREST APIJavaScriptPythonI build and manage product catalogs in Odoo for companies with hundreds to thousands of SKUs - handling everything from bulk data import to custom module development. What I do best: I specialize in Odoo 18 Community for product-heavy businesses - luxury goods, wholesale distribution, furniture, lighting, and textiles. My work spans the full cycle: scraping vendor data from websites and PDFs, cleaning and transforming it, bulk importing via XML-RPC with proper variant/attribute configuration, and building custom modules to extend Odoo's functionality. Current production work (not just demos): Right now I manage the Odoo product catalog for a $53M luxury furniture company representing 30+ vendor brands. This includes: → Imported, audited, and deployed 6,000+ products across 6 vendor catalogs - all live in production → Built Python scripts for automated bulk import/update via XML-RPC with dry-run validation → Developed a custom Odoo module for product variant swatch display in the configurator and PDF quotes (QWeb report inheritance) → Performed large-scale data audits - identified and cleaned 5,000-8,000 duplicate products → Fixed production issues including variant pricing, missing attributes, and display bugs → Created automated pricing validation systems across vendor catalogs Technical skills: Odoo 18 Community — product.template, variants, pricelists, Sales module, QWeb reports Python — XML-RPC scripting, data processing (pandas), web scraping (BeautifulSoup, Scrapy) Custom module development — model inheritance, view inheritance (xpath), security, wizards Data import/migration — CSV, Excel, PDF extraction, API integration PostgreSQL, JavaScript, HTML/CSS How I work: I treat your Odoo instance like my own. Every bulk operation runs in dry-run mode first. Every change is logged and reversible. I communicate progress with clear tracking - you'll always know exactly where things stand. If you have a product-heavy Odoo setup that needs cleanup, bulk imports, custom features, or ongoing catalog management, let's talk. - $90/hr$90 hourly
Stephanie D.
- 4.9
- (6 jobs)
Langhorne, PASQL
Microsoft Power BIMicrosoft PowerAppsMicrosoft Power AutomateDatabase ModelingDatabase TestingQuickBooks Online APIDatabase ManagementIntuit QuickBooksQuickBaseDatabase DesignPHPJavaScriptI specialize in using low code platforms to make processes more efficient. I've helped eliminate countless spreadsheets, merged data from multiple systems into a structure I helped design & build, written custom report pages, set up automatically triggered notifications, scheduled report deliveries, and much more. I want to empower your business not only to save time & money by automating manual processes, but also to make more informed decisions by providing clear, concise reporting. I love what I do. It's very rewarding to be able to say "Yes, of course we can make that better!" and also be able to deliver on that promise quickly. Using low code platforms such as Quick Base and Power Platform, I'm able to do this in a matter of weeks rather than months. Additionally, I would be more than happy to train a member of your staff on how to maintain & make updates to the app--no programming knowledge required, just a computer savvy employee will do the trick! Thanks for reading, hope to speak with you soon! - $60/hr$60 hourly
Pero M.
- 5.0
- (11 jobs)
Bitola, BITOLASQL
AirtableApache KafkaXMLAPI IntegrationJSONApache MavenSpring IntegrationSalesforceSnapLogicSpring BootAPICSSJavaScriptJavaSpecialized Java and certified SnapLogic developer, practicing java for more than 4 years and Data Integration (SnapLogic) almost 3 years. You can see/verify my certification in certification section bellow. Also for my self I could say that I'm Salesforce enthusiast, every spare free time I used for learning Salesforce platform. Highly motivated and hardworking, willing to learn new skills also eager to absorb as much knowledge and insight as possible ability to maintain high level of confidentiality. I have good work ethic, capable to work with a team, always on time(fulfill deadlines). - $50/hr$50 hourly
Christian R.
- 5.0
- (3 jobs)
Tysons, VASQL
ReactLLM Prompt EngineeringPythonTypeScriptIonic FrameworkHTMLCSSASP.NET.NET FrameworkAngular 6ASP.NET MVCApache CordovaJavaScriptC#Hi, I'm Christian! It is very nice to meet you. I am a Creative Software Architect based in Virginia. I have over 15+ years of Excellence: Journeying from a Junior Software Engineer to a Senior Software Architect. I've mastered a myriad of technical skills, leading large-scale projects and pushing the boundaries in software design. With over 15 years of experience, I've cultivated a unique skill set in system (software), project and UI/UX design. Specializing in sophisticated software architecture, my expertise is a beacon for Fortune 500 companies (i.e. Werner Enterprise, DELL, Microsoft, etc.) and innovative startups seeking groundbreaking solutions. At the forefront of digital transformation, I've led initiatives like QuickDocta, a transformative health platform, showcasing my ability to elevate your projects with visionary design, and strategic prowess. Let's team up to bring unparalleled architectural acumen to your most ambitious tech endeavors. - $165/hr$165 hourly
Paul S.
- 5.0
- (3 jobs)
Turbenthal, ZURICHSQL
Citrix HypervisorVirtualizationMicrosoft Endpoint ManagerMicrosoft Azure AdministrationMicrosoft AzureMicrosoft SharePoint AdministrationSystems EngineeringMicrosoft Azure SQL DatabaseSystem AdministrationWindows ServerUpwork Expert-Vetted (top 1% of talent) and a senior Microsoft 365 & Azure consultant with 40+ years in IT. I fix, secure and modernise M365/Azure, roll out Microsoft Copilot without the bill shock, and keep businesses compliant — including Swiss nDSG. You work directly with me, the expert — no juniors, no jargon. I run Techvee GmbH, a Swiss-registered IT consultancy, and I'm a licensed Microsoft Cloud Solution Provider (CSP). Most of my work is remote, for clients worldwide. What I help with • Microsoft 365 & Azure — tenant setup, migration, Intune/Autopilot, Entra ID, hardening and day-to-day administration. • Security — Conditional Access, MFA, Defender, Privileged Identity Management, and fixing the common misconfigurations that quietly leave tenants exposed. • AI & Microsoft Copilot — readiness, rollout, governance, and (crucially) cost control: isolating consumption, setting spending limits, and monitoring usage so Copilot Cowork doesn't surprise you on the invoice. • Automation — Power Automate and AI Builder to remove repetitive admin. • Compliance — Swiss nDSG/FADP, Microsoft data residency, and CLOUD Act exposure reviews, documented for auditors and stakeholders. • Fractional IT / advisory — a senior second opinion or an ongoing "IT person on call" without the cost of a full-time hire. Why clients keep me on I've been IT lead and Microsoft 365 Global Admin for a regulated Swiss financial-services firm, and I build production software too (including a live Swiss QR-bill platform). So when I advise you, it comes from running real systems — not from a brochure. I tell you what your IT actually needs, what it'll take, and whether it's worth doing now or later. If you'd like a straight, senior opinion on your Microsoft environment, AI rollout or compliance position, send me a note describing what you're dealing with and I'll tell you honestly whether and how I can help. - $65/hr$65 hourly
Yoel D.
- 4.7
- (16 jobs)
Miami, FLSQL
ReactVue.jsECMAScriptReduxLaravelCryptocurrencyReact NativeC++ASP.NET Web APIASP.NET MVCVB.NETMySQL ProgrammingOracle PLSQLADO.NETWeb API.NET Core.NET FrameworkC#JavaScriptTypeScriptAngular 6Bring me your problems! I have the solutions to A-Z problems. I am not limited to a single stack, as my development career has needed me to be a jack-of-all-trades, being engaged in several cutting-edge technologies. Here's what I worked on and I am working with: - Client-Side Programming: o Frameworks: Angular o UI Frameworks: BootStrap o HTML5, CSS3, jQuery, JavaScript, TypeScript - Server-Side Programming: o C#: ASP.NET, ASP.NET MVC, .NETCORE, .NET WebApi - Mobile Programming: o C/C++/C# - Database o Relational: MySQL, SQLServer, Oracle PLSql - Server: o Apache o Nginx - Architectures: o MVW (MVC, MVVM) - Version Control: o Github, Accurev I know what your project means to you and to your business. I would be willing to offer you a help with my experience as a web and mobile developer on different enterprise level applications. I am well-versed in all phases of the software development life cycle, including source control, and code review. I used to be a hard(smart) worker, a collaborative team player and a multi-tasker, being responsible and capable of prioritizing and executing tasks in a high-pressure environment, which has made me successful on my career. Good communications skill, of course, is the most important one in me, as I used to work in a scrum/agile development environment for most of my projects. I am responsible and capable of to prioritize and execute tasks in a high-pressure environment. Wouldn't it be worthwhile to have me for your real life projects? Want to browse more talent?
Sign up
Join the world’s work marketplace

Post a job to interview and hire great talent.
Hire Talent