Upload Button Icon Add office photos

Filter interviews by

GOAL DETAILING SERVICE Still Dont Know what I was Doing Interview Questions and Answers

Updated 3 Nov 2022

GOAL DETAILING SERVICE Still Dont Know what I was Doing Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Oct 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Two me about yourself
  • Q2. What makes me to apply for the post

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing special overall the best gets the best. Suvichar of the fittest

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is REST Framework
  • Q2. What are the SQL Queries
Round 2 - Coding Test 

This is related to SQL

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between forach and Parallel.Foreach loop
  • Q2. Abstract class and interface when to use
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Interface va abstract class
  • Q2. Mvc filters usage
  • Ans. 

    MVC filters are used to perform logic before or after an action method is executed in ASP.NET MVC applications.

    • Filters can be used for authorization, logging, exception handling, etc.

    • Types of filters include Authorization filters, Action filters, Result filters, and Exception filters.

    • Filters can be applied globally, at controller level, or at action level.

    • Example: [Authorize] attribute is a type of filter used for auth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Most questions on Dependency injection, how to implement DI, how data transfeted from controller to model to view... Practical scenario based mvc questions.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between singleton class and static class
  • Ans. 

    Singleton class allows only one instance to be created, while static class cannot be instantiated and all members are static.

    • Singleton class can have instance methods and properties, while static class can only have static members.

    • Singleton class can be lazy loaded, while static class is eagerly loaded.

    • Singleton class can be implemented using a static property or method to return the single instance, while static class...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

Any one of the topic

Round 2 - HR 

(5 Questions)

  • Q1. Ask the dot net developer
  • Q2. What is asp. Net
  • Ans. 

    ASP.NET is a web application framework developed by Microsoft for building dynamic web sites, web applications, and web services.

    • ASP.NET allows developers to build dynamic web applications using languages like C# or VB.NET

    • It provides a rich set of tools and libraries for building web applications

    • ASP.NET supports various technologies like Web Forms, MVC, and Web API

    • It is integrated with Visual Studio for development and...

  • Answered by AI
  • Q3. What is the wfc
  • Ans. 

    Windows Workflow Foundation (WCF) is a framework for building workflow-enabled applications in Windows.

    • WCF stands for Windows Communication Foundation

    • It is used for building workflow-enabled applications in Windows

    • It provides a programming model, runtime engine, and tools for building workflow-based applications

    • WCF allows developers to define, execute, and manage workflows within their applications

  • Answered by AI
  • Q4. What is sql structure
  • Ans. 

    SQL structure refers to the organization of tables, columns, keys, and relationships in a database.

    • SQL structure includes tables, which store data in rows and columns.

    • Columns define the type of data that can be stored in a table.

    • Keys, such as primary keys and foreign keys, enforce relationships between tables.

    • Indexes can be used to optimize queries by speeding up data retrieval.

    • SQL structure can also include views, sto...

  • Answered by AI
  • Q5. What is the html
  • Ans. 

    HTML stands for HyperText Markup Language, used for creating and structuring web pages.

    • HTML is a markup language used to create the structure of web pages

    • It consists of elements enclosed in tags, such as , ,

    • Attributes can be added to elements to provide additional information or functionality

    • HTML can include text, images, links, forms, and multimedia content

    • Example:

      This is a heading

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nokia is the top company and it is my dream

Skills evaluated in this interview

DOT NET Developer Interview Questions & Answers

UST user image Vidya Viswanadhan

posted on 30 Sep 2023

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Memory management
Round 3 - HR 

(1 Question)

  • Q1. Can you relocate

I applied via Naukri.com and was interviewed in Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What Are JOINS in SQL and difference between Inner JOIN and equi JOIN? Illustrate with an example.
  • Ans. 

    JOINS are used in SQL to combine data from two or more tables based on a related column.

    • Inner JOIN returns only the matching rows from both tables

    • Equi JOIN is a type of Inner JOIN where the join condition is based on equality between two columns

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. Divide the array in two Halves and keep each half in ascending order without using new Array?
  • Ans. 

    Divide array in two halves and keep each half in ascending order without using new Array.

    • Use Array.sort() method to sort the original array

    • Use Array.slice() method to divide the array into two halves

    • Use Array.reverse() method to reverse the second half of the array

  • Answered by AI
  • Q3. What are Interfaces and Why do we need interfaces?
  • Ans. 

    Interfaces are contracts that define a set of methods and properties that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • They allow for loose coupling between classes and promote code reusability.

    • Interfaces can be used to define common behavior across multiple classes.

    • Example: IDisposable interface in C# ensures that an object can be properly dispo...

  • Answered by AI
  • Q4. What is inheritance and Examples in inheritance.
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class is based on another class.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • The subclass can also add its own properties and methods.

    • Examples include a Car class inheriting from a Vehicle class, or a Dog class inheriting from an Animal class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep The Basics clear and Be confident about what you know.
Be truthful and well prepared (Interviewer will catch your lies).

Skills evaluated in this interview

GOAL DETAILING SERVICE Interview FAQs

How many rounds are there in GOAL DETAILING SERVICE Still Dont Know what I was Doing interview?
GOAL DETAILING SERVICE interview process usually has 2 rounds. The most common rounds in the GOAL DETAILING SERVICE interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

People are getting interviews through

based on 1 GOAL DETAILING SERVICE interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

UST Interview Questions
3.8
 • 500 Interviews
FIS Interview Questions
3.9
 • 470 Interviews
Dell Interview Questions
4.1
 • 386 Interviews
CARS24 Interview Questions
3.6
 • 316 Interviews
Nokia Interview Questions
4.2
 • 271 Interviews
John Deere Interview Questions
4.1
 • 221 Interviews
VVDN Technologies Interview Questions
3.6
 • 189 Interviews
Mankind Pharma Interview Questions
3.9
 • 188 Interviews
View all
Compare GOAL DETAILING SERVICE with

FIS

3.9
Compare

Vivo

4.1
Compare

UST

3.8
Compare

Hyundai Motor India Limited

4.3
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview