Upload Button Icon Add office photos

Filter interviews by

Stratosphere IT Services Interview Questions, Process, and Tips

Updated 7 Jan 2025

Top Stratosphere IT Services Interview Questions and Answers

View all 7 questions

Stratosphere IT Services Interview Experiences

Popular Designations

9 interviews found

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

(2 Questions)

  • Q1. Firewall Architecture
  • Q2. Firewall troubleshooting.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Network Security Engineer Interview Questions asked at other Companies

Q1. which protocols are used in transport layer of the OSI model?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Selectors in CSS
  • Ans. 

    Selectors in CSS are patterns used to select the elements you want to style on a webpage.

    • Selectors can target elements based on their tag name, class, ID, attributes, and more.

    • Examples include: 'p' for all

      elements, '.classname' for elements with a specific class, '#idname' for elements with a specific ID.

    • Selectors can also be combined to create more specific targeting, such as 'div.container p' to target

      elements wi

  • Answered by AI
  • Q2. Types of Html tags
  • Ans. 

    Html tags are used to define the structure and content of a web page.

    • There are two main types of HTML tags: opening tags and closing tags.

    • Opening tags are used to indicate the beginning of an element, while closing tags indicate the end of an element.

    • Some tags are self-closing, meaning they don't require a separate closing tag.

    • Examples of HTML tags include <p> for paragraphs, <h1> for headings, and <a>

  • Answered by AI
  • Q3. Table tags attributes in html
  • Ans. 

    Table tags attributes in HTML

    • Attributes like border, cellpadding, cellspacing, etc. can be used to customize tables

    • The 'border' attribute specifies the width of the border around a table

    • The 'cellpadding' attribute specifies the space between the cell content and cell border

    • The 'cellspacing' attribute specifies the space between cells in a table

  • Answered by AI
  • Q4. In how many form we can apply css to html
  • Ans. 

    CSS can be applied to HTML in three forms: inline, internal, and external.

    • Inline CSS - applied directly to an HTML element using the style attribute

    • Internal CSS - defined within the head section of an HTML document using the style tag

    • External CSS - linked to an HTML document using the link tag

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Stratosphere IT Services Deputy Manager Trainee interview:
  • HTML
  • CSS3
  • Javascript

Skills evaluated in this interview

Deputy Manager Trainee Interview Questions asked at other Companies

Q1. In how many form we can apply css to html
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What kind of technical skills have you worked on?
Round 2 - Technical 

(1 Question)

  • Q1. How many positions did you close last year, and what was the revenue generated from those positions?

Senior IT Recruiter Interview Questions asked at other Companies

Q1. My understanding about Prevalent AI and What they do?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concept ..coding and basic programming

Salesforce Consultant Interview Questions asked at other Companies

Q1. 1. can we extract related object from parent object and vice versa and how? 2. what is sharing rules and what all things can you do using it? 3. flows 4. features of permission sets ( i included expiring of prmsn sets) why do we go with it?... read more
View answer (1)

Stratosphere IT Services interview questions for popular designations

 Cognos Developer

 (1)

 Deputy Manager Trainee

 (1)

 Digital Media Engineer

 (1)

 Network Engineer

 (1)

 Network Security Engineer

 (1)

 Salesforce Consultant

 (1)

 Senior IT Recruiter

 (1)

 Software Developer

 (1)

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Cognos & SQL & cognos security
Round 2 - Technical 

(1 Question)

  • Q1. That's a manager round direct with client

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Cognos Developer Interview Questions asked at other Companies

Q1. What is a Fact and Different types of facts?
View answer (1)

Get interview-ready with Top Stratosphere IT Services Interview Questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 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 - Case Study 

Skill set and additional review

Round 3 - Technical 

(2 Questions)

  • Q1. Technical question roles and responsibilities
  • Q2. Procedure merge nvl

Interview Preparation Tips

Interview preparation tips for other job seekers - technically prepare along with previous experience strong confidence

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Jobs at Stratosphere IT Services

View all

I applied via Naukri.com

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between html and html5?
  • Ans. 

    HTML is the standard markup language for creating web pages, while HTML5 is the latest version with new features and improvements.

    • HTML is the older version of the markup language used for creating web pages.

    • HTML5 is the latest version with new features like native support for video and audio, canvas elements for graphics, and improved semantics.

    • HTML5 also includes new APIs for offline web applications, drag-and-drop in...

  • Answered by AI
  • Q2. What is table in HTML?
  • Ans. 

    A table in HTML is used to display data in rows and columns.

    • Tables are created using the <table> tag in HTML.

    • Rows are defined using the <tr> tag and columns using the <td> tag.

    • Headers can be added using the <th> tag.

    • Attributes like border, cellpadding, cellspacing can be used to style the table.

    • Example: <table><tr><th>Name</th><th>Age</th></tr><tr>...

  • Answered by AI
  • Q3. What is use of Css Padding Margin?
  • Ans. 

    CSS padding and margin are used to create space around elements and control their positioning.

    • Padding is used to create space inside an element, between the content and the border.

    • Margin is used to create space outside an element, between the element and other elements.

    • Padding and margin can be specified in different units like pixels, percentages, or em.

    • Negative values can be used to overlap elements or reduce space.

    • C...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Stratosphere IT Services Digital Media Engineer interview:
  • HTMl
  • Css
Interview preparation tips for other job seekers - They ask very normal question u don’t hesitate give your best

Skills evaluated in this interview

Digital Media Engineer Interview Questions asked at other Companies

Q1. What is difference between html and html5?
View answer (2)

Network Engineer Interview Questions & Answers

user image Harun Shaikh

posted on 16 Jan 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Cisco ACI, Nexus, related questions

Network Engineer Interview Questions asked at other Companies

Q1. TCP/IP layers, why is transport needed for communication? What is Subnet mask and how does it help in data communication. Why is Vlan needed? Based on what information does a switch and router send a packet or frame? Types of arp, What is p... read more
View answer (2)

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They are shortlisted my resume from naukari and then transferred to client.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on your strength.

They are asking questions on your profile, what you are applying.

Technical Associate Interview Questions asked at other Companies

Q1. Doctor Ninja's House Problem Statement In a network of 'N' cities with 'M' paths connecting them, Doctor Ninja aims to purchase a house in a city 'X' such that it is possible to reach every other city from city 'X'. Your task is to determin... read more
View answer (1)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. First round is telephonic technical interview.
  • Q2. On telephonic conversation they are just asking some simple questions.
Round 2 - Technical 

(2 Questions)

  • Q1. 2nd round interview taking assistant manager on virtually
  • Q2. They ask some moderate questions not to hard.
Round 3 - Technical 

(2 Questions)

  • Q1. 3rd round interview taking by it manager virtually.
  • Q2. They ask some basic questions related to your work.
Round 4 - Technical 

(2 Questions)

  • Q1. 4th round of interview taking by sr. It manager dhiraj Mishra.
  • Q2. He's asking irrelevant questions and demotivate you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste your time to giving an interview in us tech solutions, Dhiraj Mishra senior manager of IT,he always demotivated you if your answer is correct.it's a pathetic experience.

Stratosphere IT Services Interview FAQs

How many rounds are there in Stratosphere IT Services interview?
Stratosphere IT Services interview process usually has 1-2 rounds. The most common rounds in the Stratosphere IT Services interview process are Technical, Resume Shortlist and Case Study.
How to prepare for Stratosphere IT Services 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 Stratosphere IT Services. The most common topics and skills that interviewers at Stratosphere IT Services expect are international bpo, Technical Support, international call center, Night Shift and International Voice Process.
What are the top questions asked in Stratosphere IT Services interview?

Some of the top questions asked at the Stratosphere IT Services interview -

  1. What is difference between html and htm...read more
  2. What is use of Css Padding Marg...read more
  3. In how many form we can apply css to h...read more
How long is the Stratosphere IT Services interview process?

The duration of Stratosphere IT Services interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Stratosphere IT Services Interview Process

based on 9 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Stratosphere IT Services Reviews and Ratings

based on 172 reviews

3.5/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.3

Salary

3.0

Job security

3.4

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 172 Reviews and Ratings
Information Technology Recruiter
116 salaries
unlock blur

₹1.2 L/yr - ₹3.6 L/yr

Software Engineer
33 salaries
unlock blur

₹3.5 L/yr - ₹9 L/yr

Technical Recruiter
30 salaries
unlock blur

₹1.7 L/yr - ₹4.5 L/yr

Software Developer
26 salaries
unlock blur

₹3.5 L/yr - ₹9.6 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹6.6 L/yr - ₹20 L/yr

Explore more salaries
Compare Stratosphere IT Services with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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