top of page

Aptitude Test

The questions cover logical reasoning, basic programming concepts, web development knowledge, and problem-solving skills.

Problem Solving: A train 240 meters long passes a pole in 24 seconds. How long will it take to pass a platform 120 meters long?
a) 30 seconds
b) 36 seconds
c) 42 seconds
d) 48 seconds
Logical Reasoning: Find the missing number in the series: 2, 6, 12, 20, ___, 42.
a) 30
b) 32
c) 36
d) 38
Math Skills: If 3x + 5 = 20, what is the value of x?
a) 3
b) 5
c) 6
d) 7
Basic Percentage Calculation: If the price of a product increases by 20% and the new price is $240, what was the original price?
a) $200
b) $220
c) $250
d) $280
Analytical Thinking: John is twice as old as his sister. Five years ago, John was three times as old as his sister. How old is John now?
a) 10 years
b) 15 years
c) 20 years
d) 30 years
HTML: Which of the following is the correct HTML tag for inserting a line break?
a) <br>
b) <lb>
c) <break>
d) <newline>
JavaScript: Which of the following correctly creates an alert box in JavaScript?
a) alertBox("Hello");
b) alert("Hello");
c) msg("Hello");
d) display("Hello");
HTML Forms: What is the correct syntax for creating a text input field in HTML?
a) <input type="text">
b) <input type="input">
c) <textbox>
d) <field type="text">
CSS: How would you center-align text inside a <div> element using CSS?
a) text-align: center;
b) align: center;
c) center: text;
d) text-align: middle;
Functions: Which of the following is a correct way to define a function in JavaScript?
a) function myFunction() {}
b) def myFunction() {}
c) function:myFunction() {}
d) func myFunction() {}
String Manipulation: How do you concatenate two strings str1 and str2 in JavaScript?
a) str1 + str2
b) str1.concat(str2)
c) Both a and b
d) None of the above
Responsive Design: What is the purpose of the <meta> tag with viewport in HTML5?
a) To make the website responsive
b) To define the page title
c) To set the background color
d) To add a script to the page
HTML5: Which HTML5 element is used to define important text?
a) <em>
b) <strong>
c) <b>
d) <highlight>
Databases: In SQL, which command is used to retrieve data from a database?
a) INSERT
b) SELECT
c) UPDATE
d) DELETE
Version Control: Which of the following is a version control system used for tracking changes in code?
a) Git
b) Google Drive
c) FTP
d) None of the above
Web Hosting: Which of the following protocols is commonly used to transfer files to a web server?
a) HTTP
b) FTP
c) SMTP
d) IMAP
bottom of page