https://enhancv.com/resume-examples/senior-software-engineer/
Thursday, 13 October 2022
Wednesday, 12 October 2022
sonata interview questions
1.virtual and abstract class difference?
2.static and interface ,override,overload,
3.what is web api?
4.different type of authentication?
5.primary key unique key difference?
6.indexer?
7.di in core?
8.filter array duplicates?
9.function,view dif
10.angular decorators annotation?
11.angular js angular difference?
12.final and dispose?
13.
Monday, 10 October 2022
c# split and get last list read txt file line by line
After spliting we get last item in c#
string lastName = "Abraham Lincoln".Split().Last();
namespace New
{
class Program
{
static void Main(string[] args)
{
string line;
int counter = 0;
System.IO.StreamReader file = new System.IO.StreamReader(@"F:\test111.txt");
while ((line = file.ReadLine()) != null)
{
var data = line.Split(';').Last();
Console.WriteLine(data);
var parts = data.Split('^');
Console.WriteLine("Id :-" + parts[0]);
Console.WriteLine("Delivery Code :-" + parts[1]);
counter++;
}
file.Close();
System.Console.WriteLine("There were {0} lines.", counter);
System.Console.ReadLine();
}
}
}Sunday, 9 October 2022
C# interview qstns
check this links of interview questions
https://www.youtube.com/watch?v=VCcXcwsH9G4
solid Principles Solid Principles
solid principles example SOLID
Friday, 30 September 2022
sql remove not existing ids in table one
How to Delete Rows That do not Exist in Another Table
select a.orderid from web.orderHeader a
WHERE web.orderHeader.orderid NOT IN (SELECT f.orderid
FROM web.orderdetail f)
Using NOT IN:
DELETE FROM orderHeader WHERE orderid NOT IN (SELECT f.orderid FROM orderdetail f)
Using NOT EXISTS:
DELETE FROM orderHeader WHERE NOT EXISTS(SELECT NULL FROM orderdetail f
WHERE f.id = fileid)
Monday, 26 September 2022
azure Blob Storage upload video
1.issue is the azure upload file container is like below
2.
junior devops engnr
Position Overview: We are a growing start up seeking a Junior Azure DevOps Engineer with 2 to 3 years of experience to support our Azure...
-
D:\A-MyProjects2024-2025\ReactNative2025\BookRental\android\app\build\outputs\apk\debug path of apk To build an Android app using Capacitor...
-
👉 When your ExceptionHandlingMiddleware tries to resolve a scoped service directly from the app root container (which is NOT allowed)....