Jump to content

Dotnet core interview questions


KrishnaDevaRaya

Recommended Posts

dotnet lo sr software engineer job kosam trying. 

Tips/suggestions unte ivvandi vayya plz.

5 yrs taruvatha job change kosam chusthunna. 

Resume tune up cheyyali . ye sites ni refer cheyyali?

interview questions prepare avvadaniki ye  sites/ resources best?

Tech stack : .net core 6, Angular 13, SQL server,Kafka, Kubernetes veeti paina exp undhi.

Link to comment
Share on other sites

4 minutes ago, KrishnaDevaRaya said:

dotnet lo sr software engineer job kosam trying. 

Tips/suggestions unte ivvandi vayya plz.

5 yrs taruvatha job change kosam chusthunna. 

Resume tune up cheyyali . ye sites ni refer cheyyali?

interview questions prepare avvadaniki ye  sites/ resources best?

Tech stack : .net core 6, Angular 13, SQL server,Kafka, Kubernetes veeti paina exp undhi.

first question…what is dotnet standard..? 

just joking..😂

Link to comment
Share on other sites

28 minutes ago, KrishnaDevaRaya said:

dotnet lo sr software engineer job kosam trying. 

Tips/suggestions unte ivvandi vayya plz.

5 yrs taruvatha job change kosam chusthunna. 

Resume tune up cheyyali . ye sites ni refer cheyyali?

interview questions prepare avvadaniki ye  sites/ resources best?

Tech stack : .net core 6, Angular 13, SQL server,Kafka, Kubernetes veeti paina exp undhi.

Resume lo cloud pina work chesindhi pettu 

inkka kafaka casandra Maria db pettu 

rest api vi pettu 

job market baga ledu for H1b ki Avadu chusina W2 ki ra antunadu

Link to comment
Share on other sites

5 years back work chesa dotnet technologies paina...

if you want to go dotnet developer...be familier with these concepts...(in recent 5 years..this list might grow...)

1. what is dotnet standard..?

2. SOLID principles

3. How you configure the dependecy inection..?

4. Entitiy Framework.. (code first approach, database first approach, scofflding...)

5. Task library..

6. middle ware....

7. C# language concepts and recently released features...

8. testing framworks..(i am pretty sure..there are plenty of wide variety...including autofixtures..)

9. Reactive Extensions (Rx)..

10. dotnet cli...

11. how do you write extension methods..

12. Builder factory pattern (dotnet core heavily use the builder patterns... ex: UseStartUp...etc)

13. controllers..etc

 

 

one  of my old code..

namespace vd.web.v1.Controllers
{
    [ApiController]
    [ApiVersion("1.0")]
    [Route("api/v{version:apiVersion}/[controller]")]
    public class SearchController : ControllerBase
    {
        #region Injected Members
        private readonly IDataRepository _dataRepository;
        private readonly ILoggerFactory _logger;
        private readonly IUrlHelper _urlHelper;
        private readonly IPropertyMappingService _propertyMappingService;
        private readonly ITypeHelperService _typeHelperService;
        private readonly IMapper _mapper;

        #endregion

        public SearchController(IDataRepository dataRepository,
                                ILoggerFactory logger,
                                IUrlHelper urlHelper,
                                IPropertyMappingService propertyMappingService,
                                ITypeHelperService typeHelperService,
                                IMapper mapper)
        {
            _dataRepository = dataRepository;
            _logger = logger;
            _urlHelper = urlHelper;
            _propertyMappingService = propertyMappingService;
            _typeHelperService = typeHelperService;
            _mapper = mapper;
        }

        [HttpGet("{filtertext}", Name=nameof(SearchBusiness))]
        public async Task<IActionResult> SearchBusiness(string filtertext)
        {
            if (filtertext.IsEmpty())
            {
                return BadRequest(ModelState);
            }

            var results = await _dataRepository.GetBusinessBySearch(filtertext);

            // resourceParams.Fields="adsh,name";
            
            var businessList = _mapper.Map<IEnumerable<SubDto>>(results.AsEnumerable());

            return Ok(businessList.ShapeData("adsh,name"));
        }
    }
}

 

  • Upvote 2
Link to comment
Share on other sites

1 hour ago, KrishnaDevaRaya said:

dotnet lo sr software engineer job kosam trying. 

Tips/suggestions unte ivvandi vayya plz.

5 yrs taruvatha job change kosam chusthunna. 

Resume tune up cheyyali . ye sites ni refer cheyyali?

interview questions prepare avvadaniki ye  sites/ resources best?

Tech stack : .net core 6, Angular 13, SQL server,Kafka, Kubernetes veeti paina exp undhi.

Check dotnettutorials site. .also there is an app ..nenu edi download chesukoni and try to spend at least one hour studying random stuff.

Link to comment
Share on other sites

 12 factor application design, cloud design patterns, micro services, production issues and your experience. rest principles.

Cap theorem, NoSQL if you have used you should be able to explain why?

Graphql is getting traction, also gprc protocol.. 

 

Link to comment
Share on other sites

On 2/6/2023 at 9:57 PM, fasak_vachadu said:

Resume lo cloud pina work chesindhi pettu 

inkka kafaka casandra Maria db pettu 

rest api vi pettu 

job market baga ledu for H1b ki Avadu chusina W2 ki ra antunadu

Azure paina work cheyyaledhu

Link to comment
Share on other sites

On 2/6/2023 at 7:26 PM, KrishnaDevaRaya said:

dotnet lo sr software engineer job kosam trying. 

Tips/suggestions unte ivvandi vayya plz.

5 yrs taruvatha job change kosam chusthunna. 

Resume tune up cheyyali . ye sites ni refer cheyyali?

interview questions prepare avvadaniki ye  sites/ resources best?

Tech stack : .net core 6, Angular 13, SQL server,Kafka, Kubernetes veeti paina exp undhi.

Sure, here are some tips and suggestions for you as you search for a Sr. Software Engineer job in .NET:

  1. Resume Tune-up: Consider having a professional review and edit your resume to highlight your relevant experience and technical skills, specifically in the .NET framework, Angular, SQL Server, Kafka, and Kubernetes. Websites like TopResume or TheLadders can provide this service.

  2. Networking: Reach out to colleagues, friends, or alumni in the industry for referrals or introductions to potential employers. LinkedIn can be a useful tool for this.

  3. Online Job Boards: Sites like Glassdoor, Indeed, and LinkedIn Jobs can be good places to search for job openings and learn more about the companies hiring.

  4. Company Research: Research the companies you are interested in and tailor your resume and cover letter to their specific needs and requirements.

  5. Interview Preparation: Anticipate common interview questions and prepare responses that highlight your relevant skills and experiences. Websites like Glassdoor and Indeed can be a good source for common interview questions.

  6. Technical Preparation: Brush up on your technical skills in the specific technologies mentioned in the job description, like .NET Core 6, Angular 13, SQL Server, Kafka, and Kubernetes, as you may be asked technical questions during the interview.

Best of luck in your job search!

  • Upvote 1
Link to comment
Share on other sites

24 minutes ago, k2s said:

Sure, here are some tips and suggestions for you as you search for a Sr. Software Engineer job in .NET:

  1. Resume Tune-up: Consider having a professional review and edit your resume to highlight your relevant experience and technical skills, specifically in the .NET framework, Angular, SQL Server, Kafka, and Kubernetes. Websites like TopResume or TheLadders can provide this service.

  2. Networking: Reach out to colleagues, friends, or alumni in the industry for referrals or introductions to potential employers. LinkedIn can be a useful tool for this.

  3. Online Job Boards: Sites like Glassdoor, Indeed, and LinkedIn Jobs can be good places to search for job openings and learn more about the companies hiring.

  4. Company Research: Research the companies you are interested in and tailor your resume and cover letter to their specific needs and requirements.

  5. Interview Preparation: Anticipate common interview questions and prepare responses that highlight your relevant skills and experiences. Websites like Glassdoor and Indeed can be a good source for common interview questions.

  6. Technical Preparation: Brush up on your technical skills in the specific technologies mentioned in the job description, like .NET Core 6, Angular 13, SQL Server, Kafka, and Kubernetes, as you may be asked technical questions during the interview.

Best of luck in your job search!

🙏

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...