Posts

NPTEL Software Testing Assignment 7 Answer 2022

  Week 7 : Assignment 7 Due date: 2022-09-14, 23:59 IST. Assignment not submitted For the first five questions, consider the following set of requirements for a college job placement process. If the CGPA is ≥ 8 (out of 10), then the students are eligible for companies that offer salaries ≥ INR 20,00,000/= per annum. If the CGPA is between 6 and 8 then they are eligible for companies that offer salaries less than INR 20,00,000/= per annum. If there aren’t any companies with salary offers ≥ INR 20,00,000/= per annum in a particular period, then those with CGPA ≥ 8 will also appear in the companies in the lower salary categories. Those with less than 6 CGPA will not be assisted by the college placement office for their placements. Answer the following questions related to equivalence partitioning based testing of these requirements. 1 point How many partitions will be there for the input CGPA if we consider only valid inputs?   Three partitions.   Five partitions. 1 point Do...

American Express is hiring for the position of Product Development Analyst!

Image
  Jobs APPLY NOW Details American Express is hiring for the position of Product Development Analyst! Responsibilities of the Candidate: Lead the ideation and launch of innovative AI/ ML products and capabilities Define product strategy and roadmap and recommend the nature and scope of present and future state of the ML Platforms Corral and organize experts from business lines, data scientists, and engineers to create shared goals and specs for AI products Help the stakeholders to productionize results for AI Products Own end-to-end AI/ ML product capabilities and drive their developments with a team of world-class engineers and designers Work with complex cross functional teams managing healthy conflicts and drive people towards customer goals and organizations priorities Transform MVPs to production grade capabilities in collaboration with Technical teams Requirements: Should have 0-2 years of experience in product management Experience in managing enterprise-wide AI/ ML platforms...

NPTEL Programming In Java Week 6 Assignment Answers

  Q1. Which of the following is NOT a method of the Thread class in Java? a. public void run() b. public void exit() c. public void start() d. public final int getPriority() Answer : b. public void exit() Q2. Which of the following statement is true in case of starting a thread with ‘run()’ and ‘start()’ method? a. There is no difference between starting a thread with ‘run()’ and ‘start()’ method. b. When you call start() method, main thread internally calls run() method to start newly created Thread c. When you call run() method directly no new Thread is created and code inside run() will execute on current Thread. d. None Answer : b. When you call start() method, main thread internally calls run() method to start newly created Thread Q3. Which of the following can be used to create an instance of Thread? a. By implementing the Runnable interface. b. By extending the Thread class. c. By creating a new class named Thread and calling method run(). d. By importing the Thread class fr...

Google | Software Engineering Internship

Image
  Google Details Google is hiring for the position of Software Engineering Intern! Responsibilities of the Intern: Create and support a productive and innovative team, work with peers, managers, and teams Develop scripts to automate routine tasks Work on our core products and services as well as those who support critical functions of our engineering operations Analyze information and evaluate results to choose the best solution to effectively solve problems Apply knowledge of computer science courses to real-world problems Conceive and develop software applications to extend and improve on Google's product offerings Research, and collaborate on scalability issues and build access to massive amounts of data and information Requirements: Currently enrolled in an Associate, Bachelor's or Master's degree program  Prior training experience with a focus on subjects in software development or other tech-related fields Experience in software development Experience coding in one or...

NPTEL Software Testing | Week 6 Assignment Answers 2022

  Week 6 : Assignment 6 Due date: 2022-09-07, 23:59 IST. Assignment not submitted 1 point While applying logic-based testing to test source code, is it true that the predicates can be taken exactly as they occur in code always?   Yes, the predicates can be considered exactly as they occur in code.   No, some times we have to add extra clauses to the predicate 1 point How do logical predicates occur in finite state machines?   The logical predicates occur as a part of the states of the finite state machines.   The logical predicates occur as guards in the transitions of the finite state machines. 1 point In a requirements specification document, where do logical predicates occur?   They occur directly as a part of the requirements.   They occur as pre-conditions, invariants and post-conditions in the requirements.   All the conditions in requirements can be translated into predicates.   Logical predicates cannot be found in requirements. Answe...