All Topics
Topic200 questions
Software EngineeringQuestions & Answers
Practice 200 Software Engineering questions with detailed answers and explanations. Tap any question below to study the full solution.
Software Engineering question list
Stephany is learning to draw a flowchart to calculate the area of a circle. Select the appropriate option that would fit into the …Arrange the words given below in a meaningful sequence. 1. Word 2. Paragraph 3. Sentence 4. Letters 5. phraseIdentify the meaningful variable names which can be used?Choose the correct and meaningful pseudo-code to add two numbers?Match the appropriate Flowchart symbols with its purpose. Start/Stop Flow direction Connector Decision making Process Input/outputWhich of the following represents the correct sequence for the given pseudo-code? BEGIN ------------- ------------- ------------- …Expression is a combination of ___________, ____________ and _______________Which of the following represents the correct sequence for the given algorithm? a. Start Get the two numbers. Add the two numbers …Choose the correct arrang5eme2nt of2 ma4them8atical symbols to make the equation true. a. 600 [+] 400 [] 800 [×] 300 [/] 200 = 200…Which of the following represents the correct sequence for the given pseudo-code? BEGIN [1] READ mark1, mark2, mark3, mark4, mark5…Flow chart for adding numbers Is the given flowchart correct?Rearrange the pseudo-code for multiplying two given numbers, Choose the correct option from the below. 1 BEGIN 2 result <- number1…If there are 6 chocolates and you take away 4, how many do you have?What do you infer from this statement? Only if Alvin is happy, then he does not go to work.By default, the flow of a program is________Identify the correct pseudo-code logic for checking a number divisible by 5 or 11. a. DECLARE number IF number%5==0 THEN PRINT num…Choose the correct options to complete the pseudo-code and determine whether the number is positive, zero, or negative. BEGIN DECL…Go to statements in the algorithm is______________must be used when a set 5of st2atem2ents4 nee8ds to be executed only if a condition is met.Which of the keyword is used to close the IF block, while writing a pseudo-code?READ age IF age>18 THEN PRINT Eligible to vote ENDIF The given pseudo-code snippet is an example for_______When a single if-else logic is used, how many possible choices can be there?Decision statements are also called as _______________. a. Sequence logic b. Iteration logic c. Program logic d. Selection logicYou are returning home from a hotel. On the way, you find a sealed envelope in a street, fully addressed with unused stamps on it.…Try some!!! If a doctor gives you 3 pills and tells you5 to ta2ke o2ne p4ill ev8ery half hour, how long would it take before all t…Manual execution of the steps in the algorithm is called as _____Which statement logic implements multiple-way selection?A computer program must either use conditional statements or looping statements or sequential statements to solve a problem. All o…Consider the pseudo-code snippet. What output do you think the snippet will produce if the sample input for number is 3? BEGIN DEC…Identify the logic which suits the flowchartWhich of the following is not a keyword used in a pseudo-codeFrom the option, find the correct pseudo-code to find the greatest of three numbersPointing to a photograph of a boy Mathew said, "He is the son of the only son of my mother." How is Mathew related to that boy?Analyze the statements. i)Danny is younger than Edwin ii)Christine is younger than Danny. iii)Christine is older than Edwin. If th…Assume, there are four boys sitting on a sofa. Mithran is to the left of Anwar. Babu is to the right of Anwar. Edwin is between An…"Invalid balloon number " O5R nu2mber2 > 14 OR 8number < 50 "This balloon can fiy to Tweety" OR number < 1 PRINT AND number%7 == 0…Choose the correct pseudocode for the below problem statement. Problem Statement : Hide and Seek One day, Bunny and his friends we…Which looping logic is exit controlled?Consider the output: 0, 2, 4, 6, 8 ,10 ,12, 16 Which of the below given pseudo code snippet gives the above output?Predict the output of the given flowchart.Iteration/looping is a repetition of___________Do-while looping statement is almost same as______What is true about FOR LOOP?Jack wants to book fiight tickets in Feather-Airways online portal for his family of five. Passenger details like name, age, gende…What will be the output for WHILE loop? BEGIN DECLARE number SET number <-- 30 WHILE number>0 number <-- number-4 END WHILE PRINT …What is the output for FOR-loop snippet? FOR i <--1 to 15 PRINT i i <-- i+3 END FORWhich of the following symbols is inappropriate in building the flowchart pertaining to sequential flow of program?The statement / statements within the loop must get executed at least once except for do-while statement. State True/False.Which of the following statements are true with respect to looping statements?Which of the following statements are true?Consider you have a Rubik cube with different colors in each face. To solve this cube, you will continue to rotate the sides until…Partially w h r e a i f l g o t m n p d DOWN: 1) Step by step list of instructions 4) When you know the exact number of iterations…Identify the logic which suits the flowchart?It's Halloween. You go from house to house, tricking or treating. You get 2 candies from each house that you go to. You must retur…Looping statements are also called ____________ a. Sequence logic b. Program logic c. Selection logic d. Iteration logicFind out the logic of series and complete. 9 = 4, 21 = 9, 22 = 9, 24 = 10, 8 = 5, 7 = 5, 99 = 10, 100 = 7, 16 = ?Take 1 away from me and you get a prime number; add 1 to me and you get twice that prime number.Select the appropriate code snippet for the given problem statement provided as pseudocode. Problem Statement : Strong number Chec…Choose the pseudocode for the below problem statement. Problem Statement : Vehicle Registration Mr.William buys a new Audi car. Du…A mathematical quiz context happened in a school and the scores are stored in an array named quizmark. The coordinating person wan…Assume, number[100] <- 99. How many elements can be stored inside the array variable number?Which of the following are False with respect to the manipulation of arrays?Negative elements can be placed inside an array. State true / falseThe names of all associates undergoing training are stored in an array named associate_name[50]. The 5th associates name is retrie…Information about ___________ need not be specified when declaring an arrayIt is not possible to do a search operation in an array that is not sorted. State True/False.Random access is not possible in an array. State True/FalseAssume you have an array5 nam2ed n2umb4ers 8of size 10. Which of the assignment is valid?Which of the following statements is correct with respect to arrays?Consider you buy a laptop. You want to store5 the 2deta2ils o4f tha8t laptop such as price, model_name,model_number, warranty_peri…Consider you want to compare the prices of redmi , sony, samsung phones in three online sites like amazon,fiipkart,ebay. Which arr…It is possible to traverse through an array from the first position to the last and not vice versa. State true or false.An Array consists of rows and columns is also called as________Choose the correct Pseudo code to store names in an array and display a name. a. BEGIN INPUT name DECLARE name [20] PRINT name END…A farmer has 17 sheep and all but nine die. How many are left?a year, there are 12 months. Seven months have 31 days. How many months have 28 days?What is the next letter in the following sequence? J,F, M, A, M, J, J, A, __.Select the appropriate code snippet for the given problem statement provided as pseudocode. Problem Statement : Dinner Plan Five f…Choose the correct pseudocode for the below problem statement. Problem Statement : Find Maximum value Choose a pseudo code to find…Which conforms that the software meets its technical specifications?The software is put into operation in the clients environment. The client comes back to enhance the UI to attract more customers. …Which of the below is one of the phase of the prototype model? a. Detailed HLD phase b. Detailed Coding c. Quick design d. Extensi…High-risk or major functions are addressed in the first cycles there by delivering an operational product. Which of the SDLC proce…Beta technologies has undertaken a collision avoidance system software to be implemented for airports. Additional safety measures …The student mark processing system software has been developed and deployed at the St. Peters university. The system shows the gra…Choose the option that accurately represents the sequential order of phases in the Waterfall model. a. Requirement Gathering, Anal…Scenario: LIC has manually carried out their process of premium collection procedure for the past 45 years. Now, they have employe…Testing performed by the user to ensure that the system meets the agreed upon quality attributes and the specification is called a…Which model emphasizes Validation and Verification at each level of stage containment?Consider that you have to develop a fiight control system. The system is simulated as such that the original system is working. Th…ABC company comes to the Allen Software Company with various requirement. The client wants the functionality to view all the emplo…A client wants to develop a Web application for the new Super market store. The client want to have lot of UI components and custo…________ involves tranformation of user needs into an effective software solution.Spiral life cycle model is not suitable for products that are vulnerable to large number of risks. State if True or False.When there is a difference between the output what is expected and the actual one is termed asXYZ Finance Co. has, at present, started its operations in India. Based on the first six months performance, it has plans for expa…Which of the following options are the steps involved in Requirements Analysis?From the below options, identify the role of the system analyst. a. Writes pseudo code for the given module b. Creates SRS c. Crea…Identify the correct statements from the below options. a. Analysis or High level design or Low level design can be performed in a…Identify the type of design that helps in transforming the data model created during requirements analysis phase into the data str…A lady buys goods worth Rs.200 from a shop. (shopkeeper is selling the goods with zero profit). The lady gives him Rs.1000 note. T…You are in a race and overtake the person who is in second place. What place are you now in?What does come down but never goes up? _______ What can one catch that is not thrown? _______ What goes up and down, but always re…Identify the possible entities from the given optionWhat kind of non functional requirement best suit the below scenario: Whenever the new offers are published in the online shopping…Consider the below scenario. A team has many players and the player belongs to one team. Identify the cardinality between player a…Whenever a new product is arrived, the stock needs to be updated. This requirement is an example for non functional requirement. S…Which of the following are available in SRS Document?During which phase the following activities are performed: Identifying the major modules of the system, how these modules integrat…_______ describes how the development activities will be performed and how development phases follow each other.Requirement came to Allen Software company to develop a software for military purpose. . second delay in the missile launching sof…Aesthetics of the website is part of the functional requirement. State true or false_________ is the application of a systematic, disciplined, quantifiable approach to the design, development, operation and mainten…Identify this technique of dynamic testing where, For a range of input, three values are chosen, One value above the range, One va…What is the difference between the actual ou5tput2 of a2 soft4ware8 and the correct output?What is the type of testing in which the tester will know about the input and the expected output details based on the specificati…Identify the correct phases of software testing life cycle. a. Requirements Analysis,Test Preparation,Test Case development,Test E…Which all of the following options would basis path testing perform?Determine the cyclomatic complexity for the following code: Accept year if(year mod 4=0 and year mod 100!=0) or(year mod 400 =0) p…After implementation of Library management system, the tester identified that certain logic are redundantly rewritten by the devel…Boundary value analysis can only be used during white-box testing. State if True or False.The testing technique that deals with the internal logic and structure of the code is called ________.the online shopping portal, for customer registration the password field can accept only characters in the range of 5 to 25. Deriv…Tester is trying to test whether the values in the drop down are listed properly. What type of testing the tester performs in this…Walk through is performed by the trained moderator, whereas the Inspection is usually conducted by the author itself to record def…An SRS has the following requirement.The stock exchange shall show the stock report for the next 24 hours.What is the issue with t…The standard document that describes all the requirements of the system is called asClient Comes to Allen Company for a Banking Solution. Who from the below options would be best suited to gather all the requiremen…remote control Car application, in the step by step execution of the requirement described, it is mentioned when the fuel level go…Client Comes to Allen Company for a Banking Solution.Which phase of SDLC is best suited to gather what is expected from clientA good SRS should be ______, ________ and _______.Which of the following options are valid for the relationship between the configuration objects?Match the following facts about Version Management.Version Control allows users to lock files so they can only be edited by one person at a time and track changes to filesChoose the missing steps involved in the Change Control Process in the correct order: 1. Identify and submit change request 2. ___…Which of the following describes the change history of an object?Version Management allows parallel concurrent development. State True or False.From the options identify the features that are part of the software configuration managementState true or false. Automated tools are available in the market, for managing change and versioning the software_________ is a committee that makes decisions regarding whether or not proposed changes to a software project can be incorporated.an online shopping application, during customer registration the customer was made to enter his city in a text box. As the site be…Software maintenance, changes are implemented by modifying existing components and adding new components to the system. State if T…Software maintenance for the change of the platform is an example for --------- maintenanceClient has developed an application that allows each of their customers to store 2TB of data. As the number of Customers are incre…Any changes done to the software during the operational phase of the software before project wind up is called as maintenance. Sta…Client wanted to add a new feature to his existing application "Discount Offers" for all the existing customers. Whenever a new pr…Y2K problem is an example for ------------- maintenanceA mathematical quiz context happened in a school and the scores are stored in an array named quizmark. The coordinating person wan…Assume, number[100] <- 99. How many elements can be stored inside the array variable number?Which of the following are False with respect to the manipulation of arrays?Negative elements can be placed inside an array. State true / falseThe names of all associates undergoing training are stored in an array named associate_name[50]. The 5th associates name is retrie…Informationabout neednotbespecifiedwhendeclaringanarray Information about ___________ need not be specified when declaring an arra…It is not possible to do a search operation in an array that is not sorted. State True/False.Random access is not possible in an array. State True/FalseAssume you have an array named numbers of size 10. Which of the assignment is valid?Which of the following statements is correct with respect to arrays?Consider you buy a laptop. You want to store the details of that laptop such as price, model_name,model_number, warranty_period in…Consider you want to compare the prices of redmi , sony, samsung phones in three online sites like amazon,flipkart,ebay. Which arr…It is possible to traverse through an array from the first position to the last and not vice versa. State true or false.An Array consists of rows and columns is also called as________Choose the correct Pseudo code to store names in an array and display a name. a. BEGIN INPUT name PRINT name DECLARE name [20] END…the Waterfall model, requirements are typically…Which model maps each development phase to a corresponding test phase?Prototyping (throwaway) is BEST when…Evolutionary Prototyping means…Which model emphasizes delivering functionality in modules over time?Iterative development primarily focuses on…Which model is most associated with explicit risk analysis every iteration?Agile (Scrum) sprints typically deliver…RAD prioritizes…V-Model is most suitable for…Agile, the product backlog is owned by the…A key drawback of Waterfall is…Incremental vs Iterative: which is TRUE?Which model is LEAST flexible to change?Spiral is best matched with which keyword?Agile accepts changing requirements…RAD typically targets a delivery window of…Throwaway prototyping’s prototype is…A hallmark of Scrum is…Which model best ensures traceability from requirements to tests?When primary risk is misunderstood requirements, prefer…Incremental delivery provides value because…Spiral model phases typically include…Kanban emphasizes…Agile, who shields the team from impediments?A weakness of RAD is…Which is MOST documentation-heavy?Which combo is valid?When frequent regulatory audits are expected, which model helps?A key Agile artifact used during Sprint Planning is…RAD differs from Spiral mainly because RAD…Scrum, increment must be…Which model best fits “measure–learn–build” loops?The main risk Spiral addresses early is…Which statement about Evolutionary Prototyping is TRUE?A new fintech startup will expand to multiple countries; requirements will evolve rapidly. Which model?Client demands a quick MVP in 2 months with heavy user workshops. Pick:HR system to be delivered module-by-module: Profiles → Payroll → Leave. Choose:Practice more topics
PrimerPrep has independently reviewed practice questions and coding exercises — all free.