Showing posts with label c#. Show all posts
Showing posts with label c#. Show all posts

Wednesday, July 1, 2020

Syed Sohaib Ahmed - Software Developer .NET

Portfolio

Projects
Technologies Used
Saltours Hotel Booking:  https://www.saltours.travel/index.html
ASP.Net (C#), SQL Server, REST APIs
Accommodation Management System for Eni S.p.A (Italy) : https://www.eni.com/en-IT/home.html
ASP.Net (C#), SQL Server
Fund Banking system (provident fund calculation)
ASP.Net (C#), SQL Server
Mamashop (Ecommerce website)
Magento, PHP
Budgeting & Planning system for Sanofi: https://www.sanofi.com/
ASP.Net, VB.Net, SQL Server
Garments Management System for Afzal Garments, Karachi
C#, Win Forms, RDLC reporting
Online Jewellery Management System (Hope Jewellery LLC) – ojms.net
ASP.Net
Ecommerce site for Ahlajaw : https://store.ahlaajaw.com/
ASP.Net, Javascript, CSS3
ERP system for Ahlajaw: https://www.ahlaajaw.com
ASP.Net MVC
CRM application for Ahlajaw
ASP.Net AJAX
Gym Management System
ASP.Net, SSRS reporting
Qatar Development Bank Kiosk: www.qdb.qa
WPF, XAML, C#, gdi32.dll (Peripherals integ.)
KeyBS UAE service Kiosk: keybs.net
WPF, XAML, C#
Dynamics AX E2E implementation
Axapta, X++, SSRS reporting

Thursday, September 12, 2013

Software Engineer/Developer Interview Questions

Following are the list of some commonly asked Interview Questions for the job or vacancy of Software Engineer or Software/Web/Desktop Application Developer. It also includes OOP, C#, ASP.NET, ADO.NET and SQL Interview Questions.

Friday, October 19, 2012

UBIT BSCS Material

Hello all! Here you can find the links to get the study material for BSCS (of UBIT, Department of Computer Science, University of Karachi)
You can get Ebooks, Projects, Assignments and much more. There are many ways to get these materials.

  • There are a some blogs and sharing pages maintained by the alumnis of the Department of Computer Science, University of Karachi. Plenty of good stuff also present there. Following are the links of those blogs.

Wednesday, December 7, 2011

How to Add data in SQL with C# and ADO.NET

,



Hi, This is the first video of the 5 video series. In this video, you can learn about adding data into SQL Server using C# and ADO.NET. In the next four videos of the video series, you can learn about retrieving data, deleting and updating data. You can watch all the videos of the series by visiting youtube by simply clicking on that video or just clicking the youtube logo on this video. Cheers!!!

Friday, November 4, 2011

More C# and Java Differences

Features of C# Absent in Java

  • C# includes more primitive types and the functionality to catch arithmetic exceptions.
  • Includes a large number of notational conveniences over Java, many of which, such as operator overloading and user-defined casts, are already familiar to the large community of C++ programmers.
  • Event handling is a "first class citizen"—it is part of the language itself.
  • Allows the definition of "structs", which are similar to classes but may be allocated on the stack (unlike instances of classes in C# and Java).
  • C# implements properties as part of the language syntax.
  • C# allows switch statements to operate on strings.
  • C# allows anonymous methods providing closure functionality.
  • C# allows iterator that employs co-routines via a functional-style yield keyword.
  • C# has support for output parameters, aiding in the return of multiple values, a feature shared by C++ and SQL.

Difference between C# and Java

Following are some important and key difference in the language C# and Java!!!

#10 – Give me my standard output!

This may not seem like a big deal, but when I’m first getting my head in a language, I want to be able to debug. With everything so new and shiny, I don’t want to hear about the debugger yet, I don’t care about the fancy message boxes, just tell me how to get something on standard output!
In C#, the code looks like this:
Console.WriteLine("your string here");

#9 – Namespaces == Freedom

In Java, the package hierarchical structure mirrored the directory hierarchical structure. This made sense to a degree, but then why didn’t Sun just auto-derive the package structure? Anyway, Microsoft has freed us from this constraint. The C# package structure is defined using namespaces (just like Java), but the namespaces do NOT have to reflect the directory structure.

#8 – What happened to super?

Slight renaming of keywords drives me bonkers! Substitute Java’s super keyword with base.