Codeflies Technologies
10+ Reliance Nippon Life Insurance Interview Questions and Answers
Q1. What is html and diffrence between html and HTML5?
HTML is a markup language used to create web pages. HTML5 is the latest version with new features and improved functionality.
HTML stands for Hypertext Markup Language
HTML is used to structure content on the web
HTML5 introduced new elements like
, HTML5 supports multimedia elements like
HTML5 has improved form handling and supports new input types like date, time, email, etc.
Q2. Difference between visibility hidden and display none
visibility:hidden hides the element but still takes up space, display:none hides the element and does not take up space.
visibility:hidden keeps the element in the document flow and preserves its dimensions
display:none removes the element from the document flow and does not preserve its dimensions
visibility:hidden still allows the element to be interacted with, display:none does not
visibility:hidden can still affect the layout and positioning of other elements, display:none do...read more
Q3. What is css and types of css.
CSS stands for Cascading Style Sheets. It is used to style and layout web pages.
CSS is used to add styles to HTML elements.
There are three types of CSS: inline, internal, and external.
Inline CSS is applied directly to an HTML element using the style attribute.
Internal CSS is defined in the head section of an HTML document using the style tag.
External CSS is defined in a separate file and linked to the HTML document using the link tag.
Q4. What you expected CTC from us.
I am open to negotiation based on the job requirements and responsibilities.
I would like to know more about the job responsibilities and requirements before discussing salary.
I am looking for a fair compensation based on my skills and experience.
I am open to discussing benefits and other perks in addition to salary.
I am flexible and willing to negotiate based on the overall package offered.
Q5. What is anonymous function?
An anonymous function is a function without a name, defined using function keyword and can be assigned to a variable.
Anonymous functions are often used as callbacks or event handlers.
They can be passed as arguments to other functions.
They can be used to create closures.
Example: const add = function(a, b) { return a + b; }
Example: setTimeout(function() { console.log('Hello World!'); }, 1000);
Q6. What is flexbox in css.
Flexbox is a layout mode in CSS that allows you to create flexible and responsive layouts.
Flexbox is used to align and distribute space among items in a container.
It allows you to easily create complex layouts without using floats or positioning.
Flexbox properties include display, flex-direction, justify-content, align-items, and flex-wrap.
Example: display: flex; flex-direction: row; justify-content: space-between; align-items: center;
Example: display: flex; flex-wrap: wrap; ...read more
Q7. Difference between let and var.
let and var are both used for variable declaration in JavaScript, but they have some differences.
let has block scope, while var has function scope
let cannot be redeclared in the same scope, while var can
let is not hoisted, while var is
let is a relatively new addition to JavaScript (ES6), while var has been around since the beginning
Q8. Difference between null and undefined
null means absence of value while undefined means a variable has been declared but not assigned a value.
null is a value that represents no value or an empty value
undefined means a variable has been declared but not assigned a value
null is a primitive value while undefined is a type
null is explicitly set while undefined is implicit
null is falsy while undefined is also falsy
null is an object while undefined is not an object
Q9. Data types in javascript?
JavaScript has 7 primitive data types: string, number, boolean, null, undefined, symbol, and bigint.
String: a sequence of characters enclosed in quotes
Number: integer or floating-point number
Boolean: true or false
Null: intentional absence of any object value
Undefined: a declared variable without a value
Symbol: a unique identifier
Bigint: an integer with arbitrary precision
Q10. Difference between an array, array-list, and vector?
Array is a fixed-size collection, ArrayList is a dynamic-size collection, and Vector is a synchronized dynamic-size collection.
Array is a basic data structure with a fixed size.
ArrayList is a resizable array implementation of the List interface.
Vector is similar to ArrayList but is synchronized, making it thread-safe.
Example: String[] names = new String[5];
Example: ArrayList
names = new ArrayList<>(); Example: Vector
names = new Vector<>();
Q11. In your terms, which one is the best portal to hire IT Professionals?
LinkedIn is the best portal to hire IT professionals.
LinkedIn has a vast network of professionals with IT skills.
It allows recruiters to search for candidates based on specific criteria such as skills, experience, and location.
LinkedIn also provides recommendations and endorsements from colleagues and employers, giving insights into a candidate's abilities.
Many IT professionals actively maintain their LinkedIn profiles, making it easier for recruiters to find and connect with...read more
Q12. What is multi-threading?
Multi-threading is the ability of a program to execute multiple threads concurrently, allowing for parallel processing.
Multi-threading improves performance by utilizing multiple CPU cores.
Each thread runs independently and can perform different tasks simultaneously.
Threads can communicate and share data through synchronization mechanisms like locks and semaphores.
Examples of multi-threading in Android include background tasks, network operations, and UI updates.
Q13. what is Hash Map?
Hash Map is a data structure that stores key-value pairs and allows fast retrieval of values based on their keys.
Hash Map is implemented using an array of linked lists or a balanced tree.
Keys in a Hash Map must be unique.
Hash Map provides constant-time complexity for insertion, deletion, and retrieval operations.
Example: HashMap
map = new HashMap<>();
Top Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month