Upload Button Icon Add office photos

Filter interviews by

Gvr Technolabs Interview Questions and Answers

Updated 25 Apr 2024

Gvr Technolabs Interview Experiences

Popular Designations

4 interviews found

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

(6 Questions)

  • Q1. Difference between static and auto variable with same name. Static variable is stored in data section where as auto variable is stored in stack section.So if static variable get incremented,it will take pl...
  • Ans. 

    Static variables are stored in data section, while auto variables are stored in stack section. Incrementing a static variable updates its value in the data section, while incrementing an auto variable updates its value in the stack section.

    • Static variables have a lifetime of the entire program, while auto variables have a limited scope within a function.

    • Static variables retain their value between function calls, while ...

  • Answered by AI
  • Q2. Difference between structure and Union. Structure is stored in a contigous memory location while union is stored on a shared memory location.Union will take the highest data member memory and it will be al...
  • Ans. 

    Structure is stored in a contiguous memory location while union is stored on a shared memory location.

    • Structure allocates memory for each member separately, while union shares the same memory for all members.

    • Structures are used when each member needs its own memory space, while unions are used when only one member is accessed at a time.

    • Example: struct Person { char name[50]; int age; }; union Data { int num; float valu...

  • Answered by AI
  • Q3. In call by value whether the actual argument will be altered by formal argument? No
  • Q4. In call by reference whether the actual argument will be altered by formal argument? Yes,here address of actual argument is sent.So values of actual argument will be altered.
  • Q5. AUTO variable will be stored in Ans stack
  • Q6. Whether global variable be used in another file?Yes with keyword extern it can be extended to another file

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (218)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Dec 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 - HR 

(1 Question)

  • Q1. Personal information, Experience details, famil
Round 3 - Technical 

(1 Question)

  • Q1. They asked technical questions what I learnt in previous company.

I applied via Indeed and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. 1-Difference between UDP and TCP.
  • Ans. 

    UDP is a connectionless protocol that provides no guarantee of delivery, while TCP is a connection-oriented protocol that ensures reliable delivery.

    • UDP is faster and more efficient for streaming data, while TCP is better for applications that require reliable data transmission.

    • UDP does not establish a connection before sending data, while TCP does.

    • UDP does not provide error checking or correction, while TCP does.

    • Exampl...

  • Answered by AI
  • Q2. How to assign IP in RHEL 7 Through Command Line and GUI
  • Ans. 

    IP can be assigned in RHEL 7 through both command line and GUI.

    • Command Line: Use 'nmcli' command to assign IP address, subnet mask, gateway and DNS server.

    • GUI: Go to 'Settings' -> 'Network' -> select the interface -> click on the gear icon -> select 'IPv4' or 'IPv6' tab -> assign IP address, subnet mask, gateway and DNS server.

    • To verify the IP address, use 'ip addr show' command in the terminal.

  • Answered by AI
  • Q3. What is VLAN
  • Ans. 

    VLAN stands for Virtual Local Area Network and is a method of dividing a physical network into multiple logical networks.

    • VLANs are used to improve network performance, security, and management.

    • Each VLAN has its own broadcast domain, which reduces network congestion.

    • VLANs can be configured based on port, MAC address, or protocol.

    • VLAN tagging is used to identify which VLAN a packet belongs to.

    • Examples of VLANs include se...

  • Answered by AI
  • Q4. Difference between L2 and L3
  • Ans. 

    L2 and L3 are different layers in network architecture. L2 is data link layer and L3 is network layer.

    • L2 operates on MAC addresses while L3 operates on IP addresses

    • L2 is responsible for error-free transmission of data frames while L3 is responsible for routing and forwarding of packets

    • Examples of L2 protocols include Ethernet and Wi-Fi while examples of L3 protocols include IP and ICMP

  • Answered by AI
  • Q5. What is ping
  • Ans. 

    Ping is a network utility used to test the connectivity between two devices on a network.

    • Ping sends a small packet of data to a specific IP address or hostname.

    • It measures the time it takes for the packet to travel to the destination and back.

    • Ping is commonly used to troubleshoot network connectivity issues.

    • It can also be used to determine the latency or delay in network communication.

    • Ping can be run from the command l...

  • Answered by AI
  • Q6. How check IP in Linux operating system through command line and GUI
  • Ans. 

    Learn how to check IP in Linux through command line and GUI

    • To check IP through command line, use the command 'ifconfig' or 'ip addr show'

    • To check IP through GUI, go to network settings and look for the IP address

    • To check public IP, use the command 'curl ifconfig.me' or 'curl icanhazip.com'

  • Answered by AI
  • Q7. How to Configure YUM.
  • Ans. 

    YUM can be configured by editing the configuration files located in /etc/yum.repos.d/ directory.

    • Edit the .repo files in /etc/yum.repos.d/ directory to add or remove repositories

    • Use the yum-config-manager command to enable or disable repositories

    • Configure proxy settings in /etc/yum.conf file

    • Set the cached package expiration time in /etc/yum.conf file

    • Use the exclude option in /etc/yum.conf file to exclude specific packag

  • Answered by AI
  • Q8. Difference between Online & offline UPS
  • Q9. How to configure VLAN
  • Ans. 

    VLAN configuration involves creating and assigning VLANs to switch ports.

    • Identify the VLANs needed and assign VLAN IDs

    • Configure the switch ports to be members of the appropriate VLANs

    • Configure VLAN trunks to allow VLAN traffic to pass between switches

    • Configure VLAN interfaces for inter-VLAN routing

    • Test and verify the VLAN configuration

  • Answered by AI
  • Q10. What is Switch.
  • Ans. 

    A switch is a networking device that connects devices together on a local area network (LAN).

    • Switches operate at the data link layer of the OSI model.

    • They use MAC addresses to forward data between devices.

    • Switches can improve network performance by reducing collisions and increasing bandwidth.

    • Examples of switches include Cisco Catalyst, HP ProCurve, and Netgear ProSafe.

  • Answered by AI
  • Q11. What is router & Routing
  • Ans. 

    A router is a networking device that forwards data packets between computer networks.

    • Routers operate at the network layer of the OSI model.

    • They use routing tables to determine the best path for data to travel.

    • Routers can connect different types of networks, such as LANs and WANs.

    • Examples of routers include Cisco, Juniper, and TP-Link.

    • Routing is the process of selecting the best path for data to travel through a network

  • Answered by AI
  • Q12. What is gateway
  • Ans. 

    A gateway is a network node that serves as an entrance to another network.

    • It acts as a bridge between two different networks

    • It can be a hardware or software-based solution

    • It can perform various functions such as routing, filtering, and translating data

    • Examples include routers, firewalls, and proxy servers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear Basics of Linux and Network.
How to install Operating System. Etc.
You only say yes.

Skills evaluated in this interview

Top Gvr Technolabs Technical Support Engineer Interview Questions and Answers

Q1. How to assign IP in RHEL 7 Through Command Line and GUI
View answer (1)

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

I applied via Indeed and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. CCNA, RHCE Certification Related.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well Prepared for this Minimum 2 hours Interview Payroll company Bharat Electronics ltd Ghaziabad.

Top Gvr Technolabs Technical Support Engineer Interview Questions and Answers

Q1. How to assign IP in RHEL 7 Through Command Line and GUI
View answer (1)

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Gvr Technolabs interview questions for popular designations

 Technical Support Engineer

 (2)

 Software Engineer

 (1)

 Electronics Engineer 2

 (1)

Jobs at Gvr Technolabs

View all

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 2 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. As attendance for “Mid Management level designation “ Just asks about my Experience. Not much Technical points highlighted except few Manager level Questions (general points not much technically projected)...

Interview Preparation Tips

Topics to prepare for VIKRAN Engineering & Exim Assistant Manager interview:
  • Nothing required.
Interview preparation tips for other job seekers - Just expecting less salary and having Good experience in the relevant field you can have JOB CONFIRMED easily.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Where are you from Tell me something about yourself.
  • Ans. 

    I am from a small town in the Midwest and I am passionate about environmental conservation.

    • I grew up in a close-knit community in the Midwest

    • I have always been interested in protecting the environment

    • I enjoy outdoor activities like hiking and gardening

  • Answered by AI
  • Q2. Tell me about education background
  • Ans. 

    I have a Bachelor's degree in Computer Science from XYZ University.

    • Bachelor's degree in Computer Science

    • Graduated from XYZ University

    • Specialized in software development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an excellent experience for me.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What do you know about our company

Interview Preparation Tips

Interview preparation tips for other job seekers - they will ask about some finance knowledge and the rest is just a normal interview question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical about railway experience in OHE
  • Q2. Commerical experience related to client billing
  • Ans. 

    I have extensive commercial experience related to client billing.

    • Managed client billing for a software company, ensuring timely and accurate invoicing

    • Developed and implemented billing processes for a consulting firm, resulting in a 20% increase in revenue

    • Collaborated with sales team to resolve billing discrepancies and improve client satisfaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Small organisation but growing in a steady path
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in building web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and project management tools like Jira

    • Strong problem-solving skills and ab...

  • Answered by AI
  • Q2. Tell me about your projects
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness tracker.

    • Developed a web application for a retail company to manage inventory and sales

    • Created a mobile app for a fitness tracker to track workouts and calories burned

    • Implemented a chatbot for customer support in a banking application

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Salary expectation
  • Q2. My previous roles

Interview Preparation Tips

Topics to prepare for ABCI Infrastructures Analyst interview:
  • Analytics
Interview preparation tips for other job seekers - Read reviews of the company and then only join

Gvr Technolabs Interview FAQs

How many rounds are there in Gvr Technolabs interview?
Gvr Technolabs interview process usually has 2 rounds. The most common rounds in the Gvr Technolabs interview process are Technical, Resume Shortlist and HR.
How to prepare for Gvr Technolabs 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 Gvr Technolabs. The most common topics and skills that interviewers at Gvr Technolabs expect are Electronics Engineering, C++, Networking, PCB and Technical Support.
What are the top questions asked in Gvr Technolabs interview?

Some of the top questions asked at the Gvr Technolabs interview -

  1. Difference between structure and Union. Structure is stored in a contigous memo...read more
  2. Difference between static and auto variable with same name. Static variable is ...read more
  3. How to assign IP in RHEL 7 Through Command Line and ...read more

Tell us how to improve this page.

Gvr Technolabs Interview Process

based on 4 interviews

Interview experience

4.8
  
Excellent
View more

Gvr Technolabs Reviews and Ratings

based on 72 reviews

4.0/5

Rating in categories

3.9

Skill development

4.1

Work-life balance

3.6

Salary

3.4

Job security

3.9

Company culture

3.3

Promotions

4.0

Work satisfaction

Explore 72 Reviews and Ratings
Linux And Network Administrator

Shillong

0-2 Yrs

₹ 1.5-2.5 LPA

Linux Administrator

Shillong

0-2 Yrs

₹ 0.8-2 LPA

Technical Documentation Supervisor

Chandigarh

15-20 Yrs

Not Disclosed

Explore more jobs
Technical Support Engineer
75 salaries
unlock blur

₹1.9 L/yr - ₹3.6 L/yr

Software Engineer
11 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Linux Administrator
11 salaries
unlock blur

₹2.5 L/yr - ₹3.8 L/yr

Electronics Engineer
9 salaries
unlock blur

₹2.7 L/yr - ₹3 L/yr

Technical Documentation Writer
7 salaries
unlock blur

₹3.8 L/yr - ₹5 L/yr

Explore more salaries
Compare Gvr Technolabs with

Lea Associates South Asia

4.3
Compare

R.V.R. PROJECTS

4.0
Compare

ABCI Infrastructures

3.4
Compare

VIKRAN Engineering & Exim

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview