Here is the updated Deloitte NLA Preparation Course for 2025 Hiring: prepinstaprime.com/syllabus/deloitte-nla-syllabus
@suprajabommisetty243411 ай бұрын
n=int(input()) res=0 for i in range(n) : v, m=map(int, input(). split()) res+=(v*m) print(res)
@music-my3ms11 ай бұрын
n= int (input("enter the total numbers of nodes in your list")) momentum=0 for i in range(4): m,v=map(int,input("enter mass and velocity sepreated by space ").split()) momentum= momentum+(m*v) print(momentum)
@thorankarthik6567 Жыл бұрын
n=int(input()) c=0 for i in range(n): p=input() c+=int(p[0])*int(p[2]) print(c)
@AdityaKumar-ln4jk Жыл бұрын
wrong hai bhai
@AdityaKumar-ln4jk Жыл бұрын
x= int(input('number of attributes N ')) c=0 for i in range(x): m,v=map(int,input("enter mass m and velocity v ").split()) c+= m*v print(c)
@uchihasakura434410 ай бұрын
n=int(input("Enter no. of nodes: ")) momentum=0 for i in range(n): m,v=map(int,input().split()) momentum+=(m*v) print(momentum)
@pavanraj8868 Жыл бұрын
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int result=0; int n=sc.nextInt(); for(int i=0;i
@captainlevi94972 ай бұрын
hey but they r telling its a linked list right?
@screw641711 ай бұрын
Your voice is not clear sir
@christoragav86011 ай бұрын
Is python allowed?
@VarunRallabandi9 ай бұрын
bro when is the exam?
@letsgoparth Жыл бұрын
Should we consider time complexity when writing the code for this assessment?
@Manpreet_saini696 Жыл бұрын
Sir process to apply for Deloitte can you please share If anyone knows please share me
@PrepInsta Жыл бұрын
Hey, we have a complete video for the same. Kindly check that out.
@Smitha2809 Жыл бұрын
import java.util.Scanner; public class CalculateMomentum { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = sc.nextInt(); int momentum = 0; for (int i = 0; i < n; i++) { int m = sc.nextInt(); int v = sc.nextInt(); momentum += m * v; } System.out.println(momentum); scanner.close(); } }
@ixvhu872911 ай бұрын
Is this correct? Can u explain?
@vallamgurubabu2249 Жыл бұрын
import java.util .*; public class myclass{ public static void main(Stringl] args) { Scanner sc=new Scanner(System.in); int ans=0; int n=sc.nextInt(); for(int i=0;i