HomeExamsUITETAUIMDEVIC2510
TETAUIMDEVIC2510

Infosys Certified React Web Developer

Practice with real exam-pattern questions for Infosys Certified React Web Developer. Each question includes a detailed explanation to help you understand the concept, not just memorise the answer. Try 10 questions free — no login required.

BeginnerUI60 min
Free questions

10 Infosys Certified React Web Developer practice questions with answers

Real Lex exam-pattern multiple-choice questions for the Infosys Certified React Web Developer certification. Each question includes the correct answer. The full question bank is available to Premium members.

  1. Question 1

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development

    • You’re styling the Home component which displays movies list as a card and you want to style it in the most efficient way possible. Choose from the options given below to achieve it

    • Inline styling

      Correct
    • B

      Inline styling with reusable object

    • C

      CSS class styling by importing the CSS file

    • D

      Usage of styling libraries

  2. Question 2

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development.

    • You’ve created Profile component which returns multiple JSX by grouping them using shorter syntax of React.Fragment . You’re skeptical whether attributes are supported by it, so you go through react documentation and it says

    • It supports only key attribute.

      Correct
    • B

      It supports all attributes expect key.

    • C

      It supports all attributes.

    • D

      It doesn’t support any attribute.

  3. Question 3

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development

    • You’re looking to store user details and purchase history inside the Profile component as well as pass data to Contact component. Verify the below statements
      1. State and props are mutable.
      2. State can be passed as props.

    • Statement a is true and statement b is false.

      Correct
    • B

      Statement a is false and statement b is true.

    • C

      Both statements are true.

    • D

      Both statements are false.

  4. Question 4

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development.

    • You’ve pushed the code github repository for your fellow developers to clone and write code. Each person including you is assigned with functionality and are asked to create components that return JSX elements. Select from the below options which indicate the type of component that is created.

    • Class-based components

      Correct
    • B

      Function-based components

    • C

      Object-based components

    • D

      Method based components

  5. Question 5

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development

    • Fellow developer in the project is working on Contact component where contact details that are keyed in by the user are taken to store and later sent to the backend. She wants to create input form elements whose values are controlled by React . She needs your guidance on what type of form component that needs to be created. Select from the below options to guide her.

    • Controlled component

      Correct
    • B

      Uncontrolled component

    • C

      Form component

    • D

      React Form component

  6. Question 6

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development.

    • You've chosen React as the frontend web technology for working on the user interface. You need to give a presentation to the client as to why you've chosen it, listing its core features. Select the features of react from the following options that you would like to highlight in the presentation. (Please select 3 options.)

    • It uses VirtualDOM instead of RealDOM considering that RealDOM manipulations are expensive.

      Correct
    • B

      React's core size is smaller, hence providing efficiency

    • C

      Follows bidirectional data flow or data binding.

    • D

      Uses reusable/composable UI components to develop the view.

  7. Question 7

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development

    • The clients are satisfied with your presentation and want you to go ahead and create a boilerplate code so that you can use the latest JavaScript features to provide a nice developer experience and an optimized application for production. Select the command to provide a modern build setup from the following options.

    • create-react-app bookMyMovie

      Correct
    • B

      react-app bookMyMovie

    • C

      react-ng bookMyMovie

    • D

      None of the above

  8. Question 8

    bookMyMovie wants to automate the process of movie ticket booking and management. The following functionalities are required to be implemented where the user will be able to book a ticket based on the movies displayed, view his profile and update or delete a particular booking based on bookingId. You're the lead developer of the project and are asked to foresee and lead the development

    • At initial render of Home component, you want to fetch the data from backend, store it in state variable, movies and display it in card format. Select the option as to how the useEffect needs to be called to achieve this from the options below

    • useEffect(()=> {//required code},[] )
      Correct
    • B
      useEffect(()=> {//required code})
    • C
      useEffect(()=> {//required code},[movies])
    • D

      None of the above

  9. Question 9

    Jerry a React developer, has a requirement of adding state in the functional component in his application. But he is not sure about handling state in a functional component.Please help him in understanding functional components by removing the incorrect statements from the below options.

    • Functional components only have props and state cannot be added

      Correct
    • B

      State can be handled in functional component as well

    • C

      To handle state in functional component, it has to be changed to a class based component

    • D

      Functional components can be created as regular js functions

  10. Question 10

    What would be the Output of the following code snippet?

    (Assume all the necessary imports are done)

    const Component = () =>{
      const [showElement,setShowElement] = useState(true)
      useEffect(()=>{
        setTimeout(function() {
          setShowElement(false)
             }, 4000);
           },
       [])
          
      return(
        <div>
           {showElement?<div>I'm here and i will be gone</div>:<></>} 
        </div>
      )
    }

    • “I'm here and I will be gone” will be displayed.

      Correct
    • B

      “I'm here and I will be gone” will be displayed after 4 seconds.

    • C

      “I'm here and I will be gone” will be displayed for 4 seconds.

    • D

      None of the above

Pricing

Pay once. Clear every cert this year.

One subscription, full Telegram channel access, every PDF posted during your membership.

Monthly
50% OFF
₹1,300₹2,600
Per month · cancel anytime
  • Full access to all 1,357+ certifications
  • Monthly updated question banks
  • Telegram private channel access
  • Cancel anytime
Get Monthly
POPULAR
Quarterly
44% OFF
₹1,800₹3,200
That's ₹600/mo · billed for 3 months
  • Everything in Monthly
  • Save ₹2,100 vs monthly billing
  • Priority answer key requests
  • Best for increasing DQ score fast
Get Quarterly
BEST VALUE
Lifetime
52% OFF
₹2,400₹5,000
One-time · lifetime access
  • Everything in Quarterly
  • Lifetime channel access — no renewals
  • All future certifications included
  • Priority response from admin team
Get Lifetime
FAQ

Common questions, straight answers.

A monthly-updated Telegram channel where we post real exam-pattern question banks and detailed answer keys for 1,357+ Infosys Lex certifications. You join once, you get every PDF posted during your membership.

Right after payment on our Graphy page, you'll receive a private invite link to the Telegram channel. Access is instant — usually under 30 seconds.

We compile question banks from the actual Lex test pattern, sourced and verified by 180K+ community members who've recently cleared these exams. Match rate is consistently 85–95%.

Every single month. When Infosys rolls out new versions of certifications, we post updated dumps within 7–10 days. You'll see channel activity weekly.

Clearing certifications is one of the highest-weighted DQ factors. Members typically clear 3–5 certifications in their first 3 months, which moves DQ scores up by a full band.

i
InfyLexDumps

Independent exam preparation platform for Infosys Lex certifications. Real exam-pattern question banks, monthly updates, 180K+ community members.

Join Premium Telegram
Contact
  • @prepflixadmin
  • admin@prepflix.net
This platform is an independent educational resource and is not affiliated with or endorsed by Infosys Ltd. All certification names referenced are property of their respective owners.
© 2026 InfyLexDumps
Join Premium Telegram