Posts

Iot Online training

Learn IoT from iteanz the market leader! Enhance your skill set and boost your hirability through innovative and hands on Internet of Things (IoT)   with iteanz. Iteanz provides the most comprehensive and extraordinary technical training with our wealth of experience on IoT. Come 2020 and millions or even billions of smart electronic devices, linked by the Internet, would interact with each other independent of human intervention. This network of interacting electronic devices is named as the Internet of Things (IoT) . Looking at it from our times (2013), one could expect the IoT to consist of PCs, tablet computers, digital cameras, e-Book readers, mobile phones, robots, private and public computer networks and whatever new smart electronic devices that would be developed between now and 2020. Ultimately, the “Internet of Things” represents only the latest in the ongoing evolution of the Internet. It will almost certainly be a different landscape six months...

AWS Interview Questions and Answers

Image
1.What kind of network performance parameters can you expect when you launch instances in cluster placement group? The network performance depends on the instance type and network performance specification, if launched in a placement group you can expect up to 10 Gbps in a single-flow, 20 Gbps in multiflow i.e full duplex Network traffic outside the placement group will be limited to 5 Gbps(full duplex). 2.To deploy a 4 node cluster of Hadoop in  AWS  which instance type can be used? First let’s understand what actually happens in a Hadoop cluster, the Hadoop cluster follows a master slave concept. The master machine processes all the data, slave machines store the data and act as data nodes. Since all the storage happens at the slave, a higher capacity hard disk would be recommended and since master does all the processing, a higher RAM and a much better CPU is required. Therefore, you can select the configuration of your machine depending on your workload. For e.g...

Software Testing Interview Questions and Answers

Image
Q1). What is the MAIN benefit of designing tests early in the life cycle? Ans:   It helps prevent defects from being introduced into the code. Q2). What is risk-based testing? Ans:   Risk-based Testing is the term used for an approach to creating a test strategy that is based on prioritizing tests by risk. The basis of the approach is a detailed risk analysis and prioritizing of risks by risk level. Tests to address each risk are then specified, starting with the highest risk first. Q3). A wholesaler sells printer cartridges. The minimum order quantity is 5. There is a 20% discount for orders of 100 or more printer cartridges. You have been asked to prepare test cases using various values for the number of printer cartridges ordered. Which of the following groups contain three test inputs that would be generated using Boundary Value Analysis? Ans:   4, 5, 99 Q4). What is the KEY difference between preventative and reactive approaches to testing? ...

121 Manual Testing Interview Questions and Answers

Image
Q1). What is the difference between Functional Requirement and Non-Functional Requirement? Ans:   The Functional Requirement specifies how the system or application SHOULD DO where in Non Functional Requirement it specifies how the system or application SHOULD BE. Some functional Requirements are Authentication Business rules Historical Data Legal and Regulatory Requirements External Interfaces Some Non-Functional Requirements are Performance Reliability Security Recovery Data Integrity Usability Q2). How Severity and Priority are related to each other? Ans: Severity- tells the seriousness/depth of the bug where as Priority- tells which bug should rectify first. Severity- Application point of view Priority- User point of view Q3). Explain the different types of Severity? Ans: User Interface Defect- Low Boundary Related Defects- Medium Error Handling Defects- Medium Calculation Defects- High Interpreting Data Defects- High Hardware Failure...

Top 25 Python Interview Questions and Answers Prepared by Experts

Image
1. What is JSON? How would convert JSON data into Python data? JSON – stands for JavaScript Object Notation. It is a popular data format for storing data in NoSQL databases. Generally JSON is built on 2 structures.  A collection of <name, value> pairs.  An ordered list of values. As Python supports JSON parsers, JSON-based data is actually represented as a dictionary in Python. You can convert json data into python using load() of json module.  2. How are the functions help() and dir() different? These are the two functions that are accessible from the Python Interpreter. These two functions are used for viewing a consolidated dump of built-in functions. help() – it will display the documentation string. It is used to see the help related to modules, keywords, attributes, etc. To view the help related to string datatype, just execute a statement help(str) – it will display the documentation for ‘str, module. ◦ Eg: >>>help(str) or >...

Top 25 Hadoop Interview Questions Prepared by Experts

Image
What are real-time industry applications of Hadoop? Hadoop, well known as Apache Hadoop, is an open-source software platform for scalable and distributed computing of large volumes of data. It provides rapid, high performance and cost-effective analysis of structured and unstructured data generated on digital platforms and within the enterprise. It is used in almost all departments and sectors today.Some of the instances where Hadoop is used: Managing traffic on streets. Streaming processing. Content Management and Archiving Emails. Processing Rat Brain Neuronal Signals using a Hadoop Computing Cluster. Fraud detection and Prevention. Advertisements Targeting Platforms are using Hadoop to capture and analyze click stream, transaction, video and social media data. Managing content, posts, images and videos on social media platforms. Analyzing customer data in real-time for improving business performance. Public sector fields such as intelligence, defense, cyber security ...