Upload Button Icon Add office photos

Filter interviews by

National Institute for Smart Government Vpn Engineer Interview Questions and Answers

Updated 5 Apr 2024

National Institute for Smart Government Vpn Engineer Interview Experiences

1 interview found

Vpn Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Mar 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics and advanced in vpn technology
  • Q2. Basics and advanced

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to write custom django admin commands
  • Ans. 

    Custom Django admin commands can be written to perform specific tasks in the Django admin interface.

    • Create a management/commands directory inside your Django app directory

    • Create a Python file for your custom command inside the management/commands directory

    • Define a class that extends BaseCommand and implement the handle method to execute the command logic

    • Register the custom command in the Django admin interface by addin

  • Answered by AI
  • Q2. Python decorator

Skills evaluated in this interview

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

Few basics of java
Dsa question

Round 2 - Technical 

(2 Questions)

  • Q1. Java multithreading questions
  • Q2. Spring boot questions.

Junior Engineer Interview Questions & Answers

WSP user image Prithwindra Sarkar

posted on 30 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and detail-oriented Junior Engineer with a passion for problem-solving and continuous learning.

    • Graduated with a degree in Engineering from XYZ University

    • Completed internships at ABC Company, gaining hands-on experience in project management

    • Proficient in CAD software and technical drawing

  • Answered by AI
  • Q2. Diagram of water treatment
  • Ans. 

    Water treatment involves a series of processes to remove impurities and make water safe for consumption.

    • Water treatment typically involves processes such as coagulation, sedimentation, filtration, and disinfection.

    • Coagulation involves adding chemicals to water to make particles clump together for easier removal.

    • Sedimentation allows the larger particles to settle at the bottom of a tank.

    • Filtration involves passing water...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Personal details
  • Q2. Why you want to join
  • Ans. 

    I want to join because I am passionate about engineering and eager to learn and grow in a dynamic environment.

    • Passionate about engineering

    • Eager to learn and grow

    • Excited about working in a dynamic environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical of cloud wsdl and rest api's scecurity they aked
  • Q2. Basics of integration cloud and vbcs and oracle finance module they asked
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Lifecycle hooks of Angular
  • Ans. 

    Angular lifecycle hooks are methods that allow you to tap into specific points in a component's lifecycle.

    • ngOnChanges: called when an input property changes

    • ngOnInit: called once the component is initialized

    • ngDoCheck: called during every change detection run

    • ngAfterContentInit: called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: called after every check of the projected content

    • ng...

  • Answered by AI
  • Q2. SOLID principles
Round 2 - Technical 

(1 Question)

  • Q1. Questions on SQL
Round 3 - HR 

(1 Question)

  • Q1. Introduction and basic questions

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 4 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 - Aptitude Test 

Mix of coding, aptitude, java, javascript

Round 3 - Technical 

(2 Questions)

  • Q1. Resume based questions on project
  • Q2. Basic SQL, Java streams questions
Round 4 - Technical 

(5 Questions)

  • Q1. Project related questions
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple keys hash to the same index, a collision occurs and the pairs are stored in a linked list at that index.

    • To...

  • Answered by AI
  • Q3. Design patterns I've used
  • Ans. 

    I have used design patterns such as Singleton, Factory, and Observer in my projects.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and

  • Answered by AI
  • Q4. Print whole Fibonacci series using recursion.
  • Ans. 

    Print Fibonacci series using recursion

    • Define a recursive function to calculate Fibonacci numbers

    • Base case: return 0 if n is 0, return 1 if n is 1

    • Recursive case: return sum of previous two Fibonacci numbers

    • Print each Fibonacci number in the series

  • Answered by AI
  • Q5. Show my Github projects, and the interviewer didn't even properly looked into the code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare:
Core java concepts,
Well written resume with proper understanding of every project.
SQL,
Basic coding questions
Design patterns, solid etc.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What are services in Drupal?
  • Ans. 

    Services in Drupal are reusable objects that perform specific functions, such as database queries or sending emails.

    • Services are defined in YAML files and can be accessed throughout a Drupal site.

    • They are used to encapsulate reusable functionality and promote code reusability.

    • Examples of services in Drupal include the database service for interacting with the database, the mail service for sending emails, and the logge

  • Answered by AI
  • Q2. How to debug in Drupal?
  • Ans. 

    Debugging in Drupal involves using tools like Devel module, watchdog(), and error logs.

    • Enable Devel module for debugging information

    • Use watchdog() function to log messages to Drupal's watchdog log

    • Check error logs for PHP errors and warnings

    • Use dpm() function to print variables for debugging purposes

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Assignment 

Revit tool test and questions related to BIM

Round 2 - Technical 

(2 Questions)

  • Q1. Lighting design
  • Q2. Generator size and transformer size
  • Ans. 

    Generator size and transformer size are determined based on the power requirements and load characteristics of the system.

    • Generator size is determined by the power requirements of the system, taking into account factors such as peak load, average load, and efficiency.

    • Transformer size is determined by the voltage and current requirements of the system, as well as the power factor and impedance of the load.

    • It is importan...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. SSRS reports - Why temp tables are used and not regular tables?
  • Ans. 

    Temp tables are used in SSRS reports for performance optimization and to reduce resource consumption.

    • Temp tables are used to store intermediate results during report generation, reducing the need to repeatedly query the database.

    • Regular tables can lead to locking and contention issues in multi-user environments, while temp tables are session-specific and do not cause conflicts.

    • Temp tables can be indexed and optimized f...

  • Answered by AI
  • Q2. Table group and cache look-up
Round 3 - Technical 

(2 Questions)

  • Q1. Infra architechture
  • Q2. Form patterns - D365FO
Round 4 - HR 

(1 Question)

  • Q1. Why are you looking for job change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush-up your basics

National Institute for Smart Government Interview FAQs

How many rounds are there in National Institute for Smart Government Vpn Engineer interview?
National Institute for Smart Government interview process usually has 1 rounds. The most common rounds in the National Institute for Smart Government interview process are Technical.
How to prepare for National Institute for Smart Government Vpn Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at National Institute for Smart Government. The most common topics and skills that interviewers at National Institute for Smart Government expect are Communication Skills, Linux, Load Balancing, Networking and Switching.
What are the top questions asked in National Institute for Smart Government Vpn Engineer interview?

Some of the top questions asked at the National Institute for Smart Government Vpn Engineer interview -

  1. Basics and advanced in vpn technol...read more
  2. Basics and advan...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 National Institute for Smart Government interview
Job Portal
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

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.3k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 770 Interviews
View all

Fast track your campus placements

View all
Assistant Manager
121 salaries
unlock blur

₹3.4 L/yr - ₹11 L/yr

Consultant
56 salaries
unlock blur

₹6.2 L/yr - ₹18 L/yr

Senior Consultant
39 salaries
unlock blur

₹12 L/yr - ₹24 L/yr

Project Manager
38 salaries
unlock blur

₹7 L/yr - ₹21 L/yr

Manager
25 salaries
unlock blur

₹9 L/yr - ₹25 L/yr

Explore more salaries
Compare National Institute for Smart Government with

National Informatics Centre

4.0
Compare

Centre for Development of Advanced Computing

3.8
Compare

TCS

3.7
Compare

Wipro

3.7
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