Vacancy: Mid .NET Developer with Angular 15 or Above [Required:3] Responsibilities: *Design, code and maintain efficient and reliable c# code. *Write neat and clean code *create test cases and follow test cases to implement the requirements Must have: * Minimum 2 years of experience in software development in C# * Strong practical and theoretical knowledge of OOP * Strong knowledge of the .NET framework, including C#, ASP.NET, and .NET Core. * Ability to write reusable C# libraries * Experience in writing unit test will be plus point * Experience working with source control system [GIT, SVN] * Experience working with RESTful API (Dapper ORM) * Experience with database technologies like SQL Server, MySQL, or Oracle. * Familiarity with front-end frameworks like Angular will be plus point. Preferrable Skills: * Working knowledge of MVC design patterns * Front-End Angular Framework
Search Technology Pvt. Ltd.’s Post
More Relevant Posts
-
Hello Everyone, I Have Excellent Folk of Java Developer, Located at Alpharetta, GA Please let me know if you have any C2C requirements on Java or suitable skill set. Please Reach me at Akhil.Amgothu@hnminfotech.com :: 443-833-8119. #Java #fullstackjavadeveloper #corejava #microservices #backend #frontend #j2ee #springboot #hibernative #struts #apache #camel #tomcat #sdlc #json #javascript #angular #react #html #css. Note : Appreciated if you can add me to your database on your client openings 📧 Akhilcloudinc@gmail.com
To view or add a comment, sign in
-
Joke of the day Job post: .Net developer with at least 5 years of experience Question: Angular 12 or 13,?? You see the discrepancies??? If you answer: Angular 12 born in 2021 you are quite right But if you answer are they going to reject cause you know Angular but not 12 or 13??? you are perfectlly right Angular its Angular no matter the version at the end is Javascript and the franework updates can be learned Despite the fact that I have mofe than 15 years of experience :) Keep moving
To view or add a comment, sign in
-
Connect:- Chandra Dhar Tripathi Position Name: Dotnet Full-stack Developer. Location: Remote Shift Timings: 3 PM to 11 PM Job description Full Stack .Net Developer – Key Skills: · Minimum 5 years of experience in C# / ASP.NET · Hands-on programming in JSON and Web API in a production environment · Hands-on programming in JavaScript framework - Angular 6+ · Hands-on programming in Web markup languages (HTML/HTML5, XML) and Style sheet language (CSS/CSS3) · Strong knowledge of .Net Frameworks 4.5+ and .Net Core · Experience in SQL (PostgreSQL) and NoSQL databases (Mongo DB, DynamoDB) · Solid understanding of OO techniques and Design patterns · Hands-on in writing test cases using Nunit/MSTest · Used DevOps and CI/CD in previous work experience (Git/Bitbucket) · Developed software in SCRUM environment using Agile methodologies · Solid understanding of async/await and the TPL library 𝐈𝐧𝐭𝐞𝐫𝐞𝐬𝐭𝐞𝐝 𝐜𝐚𝐧𝐝𝐢𝐝𝐚𝐭𝐞𝐬, 𝐬𝐡𝐚𝐫𝐞 𝐲𝐨𝐮𝐫 𝐂𝐕 𝐚𝐭 𝐝𝐢𝐠𝐢𝐭𝐚𝐥𝟑@𝐦𝐧𝐫𝐬𝐨𝐥𝐮𝐭𝐢𝐨𝐧𝐬.𝐢𝐧 Sure! Here are the hashtags in one line: #DotNet #DotNetDeveloper #FullStackDeveloper #ASPNet #CSharp #BackendDevelopment #FrontendDevelopment #WebDevelopment #SoftwareEngineering #Coding #Programming #DeveloperLife #TechCommunity #SoftwareDevelopment #TechTrends #DotNetCore #MVC #JavaScript #ReactJS #Angular #WebApps #API #CloudComputing #Azure #VisualStudio #EntityFramework #Blazor #TechCareers #DevCommunity #CleanCode
To view or add a comment, sign in
-
In Angular, directives are components. #angular #softwareengineer #webdevelopment
To view or add a comment, sign in
-
🚀 Excited to share some insights on Java web development technologies! 🌐 Are you diving into Java web development or looking to enhance your skills? Let's explore some fundamental technologies that power Java web applications: 👨💻 Servlets: Handling incoming HTTP requests, Servlets are the backbone of Java web development, offering a robust way to process client requests and generate responses. 🖥️ JSP (JavaServer Pages): Creating dynamic web pages by embedding Java code directly into HTML markup, JSPs provide a versatile way to generate dynamic content, eventually converted into Servlets for execution. </> Spring Framework: Simplifying web application development, Spring leverages Servlets and JSPs internally, offering developers a streamlined approach to building and managing web applications. 🧑🏻💻 JDBC (Java Database Connectivity): Enabling Java applications to interact with relational databases, JDBC facilitates executing SQL queries, retrieving data, and updating database records seamlessly. 👩🏼💻 Hibernate: Overcoming the challenges posed by JDBC, Hibernate serves as an ORM framework for Java, providing efficient mapping between Java objects and relational databases. Understanding the flow: 1️⃣ Client sends an HTTP request to the Servlet. 2️⃣ Servlet interacts with the database using JDBC. 3️⃣ Spring-managed beans handle business logic if needed. 4️⃣ Servlet forwards the request to a JSP page. 5️⃣ JSP dynamically generates HTML content. 6️⃣ Servlet sends the generated HTML content back to the client. Embrace these technologies to build scalable, efficient, and dynamic Java web applications! 💡💻 #JavaWebDevelopment #Servlets #JSP #SpringFramework #JDBC #Hibernate #JavaEE #WebDevelopment #TechInsights
To view or add a comment, sign in
-
🌟 Servlets vs. JSP: Mastering the Essentials for Java Developers 🌟 As a Java developer, understanding the fundamental differences between Servlets and JSP (JavaServer Pages) is crucial for building dynamic and efficient web applications. Whether you're just starting or looking to deepen your knowledge, here's a quick guide to help you navigate these essential technologies! 🚀 Servlets: The Backbone of Java Web Applications Definition: Servlets are Java classes that handle requests and responses in a web application. They are the backbone of server-side programming in Java. Usage: Ideal for processing requests, performing business logic, and controlling the application flow. Lifecycle: Managed by the servlet container, involving initialization, request handling, and termination. Advantages: High performance due to direct Java code execution. Fine-grained control over the request/response lifecycle. Robust integration with other Java EE components. 🌐 JSP: Simplifying Web Content Creation Definition: JSP is a technology used to create dynamically generated web pages based on HTML, XML, or other document types. Usage: Best for creating the view layer of your web application, embedding Java code directly into HTML. Lifecycle: Compiled into a servlet by the server, then executed as a servlet. Advantages: Ease of use with HTML-like syntax. Separation of concerns: business logic in Servlets, presentation in JSP. Built-in objects and custom tag libraries for enhanced functionality. 🔄 Key Differences Purpose: Servlets focus on logic, JSP focuses on presentation. Syntax: Servlets are pure Java, while JSP combines HTML and Java. Use Case: Servlets for complex processing, JSP for creating the user interface. 🌟 Why Both Matter? Combining Servlets and JSP allows you to build robust, scalable, and maintainable web applications. Mastering both technologies equips you with the tools to handle various aspects of web development, from backend logic to frontend presentation. 📈 Path to Becoming a Java Developer Learn the Basics: Start with core Java, then move on to Servlets and JSP. Hands-on Practice: Build small projects to understand their interaction. Explore Frameworks: Dive into advanced frameworks like Spring and Hibernate. By mastering Servlets and JSP, you're laying a solid foundation for your Java development journey. Keep coding, keep learning, and stay curious! #Java #Servlets #JSP #WebDevelopment #CareerGrowth #JavaDeveloper #TechTips #Programming #SoftwareDevelopment
To view or add a comment, sign in
-
Full Stack Java involves developing both the front-end and back-end of web applications using Java as the core programming language. A Full Stack Java developer is proficient in creating complete web applications, from designing user interfaces (using technologies like HTML, CSS, JavaScript, and frameworks like Angular or React) to managing server-side logic and databases (with Java, Spring, Hibernate, SQL, NoSQL). They also handle DevOps tasks, such as deployment and server management (using tools like Docker, Jenkins, and AWS), and use version control tools (like Git and GitHub) to collaborate and maintain code effectively. #fullstackjava #fullstackwebdevelopment #java #frontenddevelopment #backenddevelopment #html #css #javascript #angular #reactjs #sql #mysql #springboot #js #fullstack #framework #softwarecourse #webdevelopment #webdeveloper #fullstackdeveloper #teksacademy #hyderabad #courses #joinnow #webapplications #databasemanagement #devops #aws #github
To view or add a comment, sign in
671 followers
Experienced Angular Developer | 3 Years of Expertise in Building Dynamic Web Applications
10mointerested