Upload Button Icon Add office photos

Filter interviews by

SecureKloud Interview Questions and Answers

Updated 19 Feb 2025

SecureKloud Interview Experiences

Popular Designations

7 interviews found

I applied via Campus Placement and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

2 hours of aptitude test consist of quants, logical and verbal

Round 2 - Coding Test 

I has basic coding question.

Round 3 - Technical 

(2 Questions)

  • Q1. Interview was bit tuff and i applied for this company through college.
  • Q2. About machine learning, basic python question, new technologies, aptitude questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for python basics and expect questions from latest technologies

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General questions of last job
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Cloud, AWS in and out
Round 3 - One-on-one 

(1 Question)

  • Q1. Complete career path at management level
Round 4 - HR 

(1 Question)

  • Q1. HR interview including career path

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to learn and grow on cloud, blockchain, etc.

Senior Technical Project Manager Interview Questions asked at other Companies

Q1. Have you worked on Request for Proposals (RFP) and Request for Information (RFI)? Do you have prior experience in building a technical team by organizing interviews?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is expected salary
  • Q2. What do u have done

Interview Preparation Tips

Interview preparation tips for other job seekers - Its very good

Office Assistant Interview Questions asked at other Companies

Q1. Market share of motorcycle in North Zone viz Delhi, Haryana, Rajasthan, Punjab, Chandigarh, Jammu and Kashmir
View answer (5)

SecureKloud interview questions for popular designations

 Software Developer

 (1)

 Accountant Team Lead

 (1)

 Java Developer

 (1)

 Executive Accountant

 (1)

 Associate

 (1)

 Office Assistant

 (1)

 Senior Technical Project Manager

 (1)

Associate Interview Questions & Answers

user image Anonymous

posted on 9 Oct 2023

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 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Basic aptitude questions like river, train, time, speed topics

Round 3 - One-on-one 

(1 Question)

  • Q1. About myself and some coding questions from python basics and logical questions

Associate Interview Questions asked at other Companies

Q1. A rat has 3000 gm of rice, he has to travel a distance of 3000m, he eats 1gm rice/m, his maximum carrying capcity is 1000 gm,how should he travel the distance to reach with maximum rice left
View answer (5)

I applied via Naukri.com and was interviewed in Nov 2022. 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 

(2 Questions)

  • Q1. Spring Annotations? Java 8 features? Javascript? MySQL queries? Advantages of spring boot? Multithreading? Difference between put, patch and post? Difference between stringBuffer and String Builder?
  • Q2. Difference between jsp and servlet Lambda expression and functional interface
  • Ans. 

    JSP is a view technology for web applications while Servlet is a controller technology.

    • JSP is used for presentation logic while Servlet is used for business logic

    • JSP is a markup language while Servlet is a Java class

    • JSP is compiled into Servlet before execution

    • Lambda expression is a concise way to represent anonymous functions

    • Functional interface is an interface with only one abstract method

    • Lambda expression can be use

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in what skills you're mentioning in your resume

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Accounts receivable process
  • Q2. Communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience

Executive Accountant Interview Questions asked at other Companies

Q1. What is the file extension name which is created by the TDS Return software
View answer (4)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

SecureKloud Interview FAQs

How many rounds are there in SecureKloud interview?
SecureKloud interview process usually has 2-3 rounds. The most common rounds in the SecureKloud interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for SecureKloud 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 SecureKloud. The most common topics and skills that interviewers at SecureKloud expect are AWS, Python, Azure, Java and Devops.
What are the top questions asked in SecureKloud interview?

Some of the top questions asked at the SecureKloud interview -

  1. Difference between jsp and servlet Lambda expression and functional interf...read more
  2. Spring Annotations? Java 8 features? Javascript? MySQL queries? Advantages ...read more
  3. Interview was bit tuff and i applied for this company through colle...read more

Tell us how to improve this page.

SecureKloud Interview Process

based on 7 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 142 Interviews
Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.9
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 31 Interviews
View all

SecureKloud Reviews and Ratings

based on 76 reviews

3.1/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

2.8

Salary

2.9

Job security

3.2

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 76 Reviews and Ratings
Associate Cloud Engineer
23 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Senior Associate
20 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Software Engineer
13 salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Associate
12 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Devops Engineer
11 salaries
unlock blur

₹4.2 L/yr - ₹12.4 L/yr

Explore more salaries
Compare SecureKloud with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Diverse Lynx

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