Posts

Showing posts from August, 2022

NPTEL Programming In Java Week 5 Assignment Answers 2022

  Q1. Consider the following program. class Question{ static int b =2; } class Answer extends Question{ static int b =20; } public class Questionl extends Answer{ public static void main(String args[]) { b =100; System.out.println (Answer.b); System.out.println (b+Question.b); } } If the program is executed, then what will be the output from the execution? a. 100 102 b. 20 22 c. 102 100 d. 22 20 Answer : Option A Q2.  Consider the following program. class Question { int a=40; int b=20; } public class Childl extends Question { int a=100; int b=200; void add (int a, int b) { System.out.println(a+this.b-super.a); } public static void main(String[] args) { Childl c = new Childl(); c.add(10,30); } } If the program is executed, then what will be the output from the execution? a. 170 b. 130 c. 0 d. 260 Answer : a. 170 Q3. What is the output of the following code? class Explanation{ public void Print () { System.out.println("This is Explanation's Print method"); } } class Answer

Salesforce Software Engineer (Internship) | 2024

Image
Intern   APPLY NOW About Futureforce University Recruiting Our Futureforce University Recruiting program is dedicated to attracting, retaining and cultivating talent. Our interns and new graduates work on real projects that affect how our business runs, giving them the opportunity to make a tangible impact on the future of our company. With offices all over the world, our recruits have the chance to collaborate and connect with fellow employees on a global scale. We offer job shadowing, mentorship programs, talent development courses, and much more. Job Category Intern Job Details 2023 Intern - Software Engineer Location: Hyderabad/Bangalore, India This is your time to shine and be part of Salesforce, a world leader in enterprise cloud computing. We deliver innovations to our customers 3 times a year through our leading CRM platform through agile practices. As a software engineering intern you will get to contribute right away as a member of one of our Scrum teams to one or more softwa

Software Testing Week 5 : Assignment 5 | 2022

Image
  Week 5 : Assignment 5 Due date: 2022-08-31, 23:59 IST. Assignment not submitted 1 point State true or false: GACC subsumes predicate coverage.   True.   False. 1 point When we test to check if a particular clause does not determine a predicate, which kind of coverage criteria are we considering?   Active coverage criteria.   Inactive coverage criteria 1 point Which of the following represents a correct order of subsumption amongst logic coverage criteria? In the options below, read → as ‘subsumes’.   Correlated active clause coverage → Predicate coverage → Clause coverage.   Combinatorial coverage → Predicate coverage → Clause coverage.   Combinatorial coverage → Correlated active clause coverage → Predicate coverage.   General active clause coverage → Correlated active clause coverage → Clause coverage. Consider the logical predicate  p = a ∨ ( b ∧ c ) p = a ∨ ( b ∧ c ) . Truth table for the predicate is given below with rows numbered from 1 to 8. T represents the Boolean value true